必要なのは、新しいページへのリダイレクトかもしれません
success: function () {
document.location.href='/newpage/'; // jquery
}
window.location.replace('/somepage/within/thewebsite'); // js
はい、ページにとどまってコンテンツを変更したい場合は、これを行う方法がたくさんあります。それらの例をいくつか示します。
Ajax の使用
ajax を使用して、次のように Web ページのコンテンツを変更できます。
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/