こんにちは、リンクからahrefを取得するためにjQueryロードを使用しています。次に、divに入るページからdivをロードしたいので、これを試しました:
// lets load the contents
$('#navigationLinks a:not(:first-child)').click(function(event){
$('#wrapper').animate({
'left':'0px'
});
var href = $('#navigationLinks a').attr('href');
$('#content').load(href + ' #resultDiv');
event.preventDefault();
});
これはHTMLです:
<div id="navigationLinks">
<a href="index.html" id="dashboardHome">Dashboard Home</a>
<a href="industry-overview.html" title="Industry Overview" class="first currentLink">Industry Overview</a>
<a href="regions.html" title="Regions">Regions</a>
<a href="industries.html" title="Industries">Industries</a>
<a href="security-pipeline.html" title="Security Pipeline">Security Pipeline</a>
<a href="audit-events-issues.html" title="Audit Events & Issues">Audit Events & Issues</a>
<a href="account-filter.html" title="Account Filter">Account Filter</a>
<a href="contractual-delivered-services.html" title="Contractual vs. Delivered Services" class="last">Contractual vs. Delivered Services</a>
</div>
# の前にある「 #resultDiv 」のスペースを削除しようとしましたが、それは役に立ちませんでした。