function include(page){
$.ajax({
type: "get",
url:page,
dataType: "html",
success: function (data) {
$("#left_content").html(data);
},
error: function (XMLHttpRequest, textStatus, errorThrown) {
}
});
}
JS
最新推荐文章于 2025-04-16 10:09:22 发布