您需要的可能是重定向到新页面
success: function () {
document.location.href='/newpage/'; // jquery
}
window.location.replace('/somepage/within/thewebsite'); // js
是的,如果您想留在页面上并只是更改内容,有很多方法可以做到这一点,我将向您展示一些示例
使用 Ajax
您可以使用 ajax 来更改网页的内容,如下所示:
function redit() {
$.ajax({
url: 'url_of/page_to/load.html', // send ajax request
success: function (date) { // if data is recieved,
$('body').html(data); // write it in the body tag..
}
})
}
setInterval(redit(), 1000); // after one second (1000ms = 1s)
你可以在这里学习:http: //api.jquery.com/jQuery.ajax/
使用负载
通过这种方法,您只需要一个指向页面的链接,并使用它来加载其内容(文本)
$( "#result" ).load( "ajax/test.html" );
在这里学习:http: //api.jquery.com/load/