Web ページを作成し、 load() 関数を使用してページを固定 div にロードしました。しかし、別のリンクを連続してクリックすると、Web ページ全体が応答を停止します。
ページをロードするための私のコードは次のとおりです。
$( document ).ready( function() {
$('a').bind('click' , function( e ) {
e.preventDefault(); // prevent the browser from following the link
e.stopPropagation(); // prevent the browser from following the link
$( '#part1' ).load( $( this ).attr( 'href' ) );
});
});
上記の load() function のリンクをクリックすると、URLも変更したいと思います。