gpt4 book ai didi

jquery - 如何使用 jQuery 选择所有协议(protocol)不是 http 的链接?

转载 作者:行者123 更新时间:2023-12-01 07:36:06 24 4
gpt4 key购买 nike

假设您有:

<a href="file://...">link1</a>
<a href="file://...">link2</a>
<a href="http://...">link3</a>
<a href="http://...">link4</a>

我应该使用什么代码来仅选择 link1 和 link2 而不使用 a[href^=http]

最佳答案

这正是你要做的:

$('a:not(a[href^=http])')

$('a[href^=file]')

根据href属性进行选择有什么问题吗?

关于jquery - 如何使用 jQuery 选择所有协议(protocol)不是 http 的链接?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1532105/

24 4 0
文章推荐: php - 尝试将数组从 jquery 发送到 PHP 函数
文章推荐: jquery - 将 html 设置为
文章推荐: jQuery 选择器查询
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com