我的下面的代碼工作正常。這個jQuery代碼有什麼問題?
$(document).ready(function() {
$('a.address').click(function() {
$('#box').slideDown("slow");
$.ajax({
type: "POST",
url: "details.php",
success: function(html){
$("#msg").html(html);
}
});
});
});
但以下情況不(僅1線成功:)內改變,它加載什麼..只有slidesdown的#box和#msg內,但不加載#address。
$(document).ready(function() {
$('a.address').click(function() {
$('#box').slideDown("slow");
$.ajax({
type: "POST",
url: "details.php",
success: function(html){
$("#msg").html($(html).find('#address').html());
}
});
});
});
The details.php is:
<div id="info">some text.</div>
<div id="address">The address</div>
+1 jQuery很迷人 – TheVillageIdiot 2011-01-28 17:20:57