我如何使用 jquery 计算 Href

发布于 2024-08-06 09:10:43 字数 257 浏览 2 评论 0原文

我想使用 Jquery 计算页面中的 Href 。

仅供参考:我在每个用户的页面中有随机数量的超链接,并且所有 href 都根据他们的 id 进行区分,例如。 user_1,user_2,....所以在这里我无法使用 Jquery 调用 onclick 事件上的函数,因为每个 href 都有不同的名称,并且也无法编写针对每个用户不同的单独的 jquery 函数。因此,如果我可以计算页面中的 href,我可以轻松调用

等待回复的

函数,谢谢 穆克什

I want to count the Href in a page using Jquery .

Just for refrence: i have random number of hyperlinks in a page for each user and all hrefs are diffrentiated with thier id eg. user_1,user_2,.... so here im unable to call the function on onclick event using Jquery since each href is has different name and cannot also write separate jquery functions which varies for each user . so if i could get to count hrefs in a page i could easily call the function

waiting for reply

Thanks
Mukesh

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

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

发布评论

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

评论(3

2024-08-13 09:10:44

$('[href]').length ? (现在这个页面是 84,当我的评论出现在上面时是 88?:p)

$('[href]').length ? (84 in this page right now, 88 when my comment wil be on it ? :p)

书信已泛黄 2024-08-13 09:10:44

取回 "a" 标签数组吗?

我不是 js/jquery 专家..但是你应该能够用$("a")

i am not a js/jquery expert .. but should u be able to get back an array of "a" tags with

$("a") ?

吹梦到西洲 2024-08-13 09:10:43

由于元素 A , AREA, < a href="http://www.w3.org/TR/html4/struct/links.html#edef-BASE" rel="noreferrer">BASELINK 可以有一个 href 属性:

$('a[href], area[href], base[href], link[href]').size()

这将返回具有 href 属性的元素数量。问题越具体,答案就越具体。

Since the elements A, AREA, BASE and LINK can have a href attribute:

$('a[href], area[href], base[href], link[href]').size()

That will return the number of elements with a href attribute. The more specific the question, the more specific the answers.

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