1

我有这个导航菜单,其中的锚点与加载和动画内容的 jquery 片段相关联。(见演示:http ://d2o0t5hpnwv4c1.cloudfront.net/011_jQuerySite/sample/index.html )

现在,在一些导航的锚点上,我希望这个插件不会触发(因为我希望能够将一些导航菜单的锚点与 ScrollTo 插件严格关联)。

我的问题是,我可以添加什么:

$(document).ready(function() {

var hash = window.location.hash.substr(1);
var href = $('#nav li a').each(function(){
    var href = $(this).attr('href');
    if(hash==href.substr(0,href.length-4)){
        var toLoad = hash+'.php #content';
        $('#content').load(toLoad)
    }                                           
});

$('#nav li a').click(function(){

    var toLoad = $(this).attr('href')+' #content';
    $('#content').hide(888,loadContent);
    $('#load').remove();
    $('#wrapper').append('<span id="load">LOADING...</span>');
    $('#load').fadeIn(888);
    window.location.hash = $(this).attr('href').substr(0,$(this).attr('href').length-4);
    function loadContent() {
        $('#content').load(toLoad,'',showNewContent())
    }
    function showNewContent() {
        $('#content').show(888,hideLoader());
    }
    function hideLoader() {
        $('#load').fadeOut(888);
    }
    return false;

});

});

...这样它就不会在锚具有与之关联的 class="scroll" 时触发上述所有内容?

4

1 回答 1

0

您可以使用排除锚点.not(selector)

$(document).ready(function() {

var hash = window.location.hash.substr(1);
var href = $('#nav li a').not('.scroll').each(function(){
    var href = $(this).attr('href');
    if(hash==href.substr(0,href.length-4)){
        var toLoad = hash+'.php #content';
        $('#content').load(toLoad)
    }                                           
});

$('#nav li a').not('.scroll').click(function(){

    var toLoad = $(this).attr('href')+' #content';
    $('#content').hide(888,loadContent);
    $('#load').remove();
    $('#wrapper').append('<span id="load">LOADING...</span>');
    $('#load').fadeIn(888);
    window.location.hash = $(this).attr('href').substr(0,$(this).attr('href').length-4);
    function loadContent() {
        $('#content').load(toLoad,'',showNewContent())
    }
    function showNewContent() {
        $('#content').show(888,hideLoader());
    }
    function hideLoader() {
        $('#load').fadeOut(888);
    }
    return false;

});

});
于 2012-09-23T21:31:58.533 回答