これは私のhtmlページです:
<body>
<div id="containt">
<p>already have containt.</p>
</div>
<div id="other">
<form id="test">
<input id="sth" name="sth" value="123456"/>
<div id="submit"></div>
</form>
</div>
<body>
そして私のphpスクリプト:「abc.php」
$happy['verymuch'] = $_POST['sth'];
include('needtogetcontent.php');//and then use extract() to extract $verymuch in "needtogetcontent.php"
「needtogetcontent.php」
<a href="<?=$verymuch?>"><?=$verymuch?></a>
次に、次のような html ページを作成する必要があります。
<body>
<div id="containt">
<p>already have containt.</p>
</div>
<div id="other">
<a href="123456">123456</a>
</div>
<body>
助けてくれてありがとう:D!
更新:使用しました
$('#submit').click(function() {
$.ajax({
url: 'abc.php',
type: 'POST',
data: $('#test').serialize(),
success: function(data){
//data will return anything echo/printed to the page.
//based on your example, it's whatever $happy is.
$('#other').text(data);
}
});
return false;
});