我用
$('#new-nav1').load("/yiite/index.php/includes/load_second #table",{
ID:ID,name:name,ord:ord
});
我想把它放在加载的数据下,会有很多数据,这就是为什么把它加载到另一个div不是解决方案 每次更换idv#new-nav1。
中的元素答案 0 :(得分:1)
您可以使用临时div加载数据后附加。
$("<div/>").load("/yiite/index.php/includes/load_second #table", {
ID: ID, name: name, ord: ord
}, function () {
$(this).appendTo("#loaded-data").unwrap();//unwrap removes the temp div
});
答案 1 :(得分:0)
您可以尝试ajax调用,如下所示..
$(document).ready(function() {
$.ajax({
url: "/yiite/index.php/includes/load_second #table",
type: 'GET',
data: {ID:ID,name:name,ord:ord},
success: function(responseText){
$('#new-nav1').append(responseText);
},
error: function(responseText){
}
});
});
有关更多信息: -