クリックしたときに別のファイルからコンテンツをロードして、ページを更新する必要がないようにするハイパーリンクのあるページがあります。現在の「.container」の内容を、外部の html ファイルからの「.container」の内容に置き換える必要があります。
これが私のhtmlです
<li> <a href="#" class="loader" id="indexLink">Chris Lebeau</a>
ページの下部にある私の jQuery を次に示します。
<script type="text/javascript">
jQuery(document).ready(function() {
jQuery("#indexLink").click(function(event) {
jQuery("div.container").html(ajax_load).load("index.html");
event.preventDefault();
});
});
ORG チャート @ http://frommesetc.com/test/org.htmlの最初の男をクリックすると、.container がフェードアウトし、index.html の .container がフェードインします。