gpt4 book ai didi

jquery - 如何使用 jQuery 定位链接中的标题属性?

转载 作者:行者123 更新时间:2023-12-01 03:37:43 24 4
gpt4 key购买 nike

我试图隐藏在 Firefox 中弹出的链接的标题,但如果执行以下操作,我会收到错误消息:

$('a["title"]').on('mouseenter', function(e){
e.preventDefault();
});

控制台

Uncaught Error: Syntax error, unrecognized expression: a["title"]

最佳答案

省略属性选择器中的双引号。它应该是a[title]:

$('a[title]').on('mouseenter', function(e){
e.preventDefault();
});

引号通常代表属性的值。例如,a[title="value"]

为了进一步引用,属性选择器的正确语法 can be found here .

关于jquery - 如何使用 jQuery 定位链接中的标题属性?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29494288/

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