gpt4 book ai didi

javascript - 如何从 jQuery 函数中排除特定标签?

转载 作者:行者123 更新时间:2023-11-30 17:01:47 24 4
gpt4 key购买 nike

我正在使用我检索到的函数,它可以在页面上设置平滑滚动。但是,该函数将其应用于以主题标签开头的所有标签。我需要排除类中存在的特定标签的功能。

例如我想要所有<a href="#"><a href="#somename">在类里面,.someclass , 从下面的函数中排除。

  $(function() {
$('a[href*=#]:not([href=#])').click(function() {
if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') && location.hostname == this.hostname) {
var target = $(this.hash);
target = target.length ? target : $('[name=' + this.hash.slice(1) +']');
if (target.length) {
$('html,body').animate({
scrollTop: target.offset().top
}, 1000);
return false;
}
}
});
});

最佳答案

你能不能只使用not jquery 函数。喜欢:

$('a[href*=#]:not([href=#])').not(".someclass").click(new function() { /* */ })

或者,您也可以将它包含在您的选择器not中,例如:

 $('a[href*=#]:not([href=#],.someclass)').click(function() { /* */ })

http://jsfiddle.net/g252a4kp/

关于javascript - 如何从 jQuery 函数中排除特定标签?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28703911/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com