function include(page){
$.ajax({
type: "get",
url:page,
dataType: "html",
success: function (data) {
$("#left_content").html(data);
},
error: function (XMLHttpRequest, textStatus, errorThrown) {
}
});
}
JS
最新推荐文章于 2024-08-02 22:25:12 发布