JS 局部刷新页面

2024-11-27 22:15:39
推荐回答(1个)
回答1:

写那么复杂干嘛
function getpage(url)
{
$.get(url,function(data){
$("#tender").html(data);
});
}