ajax獲取數(shù)據(jù)之后怎么替換整個(gè)頁面內(nèi)容?
假設(shè)頁面A的內(nèi)容如下:
<body>
<div id="test"></div>
</body>
js中用ajax獲取數(shù)據(jù)之后的具體操作:
$.ajax({
type:"POST",
url:"請(qǐng)求數(shù)據(jù)的url",
data:需傳遞的參數(shù),
success:function(result){
//成功獲取數(shù)據(jù)
if()
{
var s = "<div>你需要替換的具體內(nèi)容以拼接字符串的形式...</div>";
$("#test").empty();
$("#test").append(s);
}
else
{
//請(qǐng)求數(shù)據(jù)失敗的交互提示;
}
}
});