我使用 JQuery AJAX。我需要向页面发送一些数据,而不是接收数据,删除所有标签(包括 html),然后像这样设置新页面:
<html>
<head></head>
<body>Example</body>
</head>
我使用这个 JQuery 脚本:
$.ajax({
type: "POST",
url: "some.php",
data: "name=John",
success: function(msg){
//how remove and set new page?
}
});