如何使用 jQuery 在 div 中查找具有特定类的链接并使其处于非活动状态

发布于 2024-10-11 14:14:27 字数 55 浏览 3 评论 0原文

如何使用jQuery在div中找到某个类的链接并使其处于非活动状态,即剥夺她无法推送的属性链接。

How to use jQuery to find a link within the div with a certain class and make it inactive, that is to deprive the property links to her it was impossible to push.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

人心善变 2024-10-18 14:14:27
$("div.someClass").find("a").removeAttr("href");

或者如果您不想删除 href 属性:

$("div.someClass a").click(function(e) {
    e.preventDefault();
});
$("div.someClass").find("a").removeAttr("href");

or if you would rather not get rid of the href attribute:

$("div.someClass a").click(function(e) {
    e.preventDefault();
});
眉黛浅 2024-10-18 14:14:27

像这样:

$("div.classToFind a").click(function() { return false; });

Like this:

$("div.classToFind a").click(function() { return false; });
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文