より正確には、ページのフラグメントを読み込もうとして#index-section
いますが、ページの URL に変数を使用すると、ページ全体が読み込まれます。
nextPage = 2;
nextURL = '/page/' + nextPage;
console.log(nextURL); // returns /page/2
$('#index-section').load(nextURL + '#index-section'); // loads entire page
変数なしで URL を直接使用すると、うまく機能します
$('#index-section').load('/page/2 #index-section');
私は何を間違っていますか?