我如何使用 jquery 计算 Href
我想使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
$('[href]').length ? (现在这个页面是 84,当我的评论出现在上面时是 88?:p)
$('[href]').length ? (84 in this page right now, 88 when my comment wil be on it ? :p)
取回 "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") ?
由于元素
A
,AREA
, < a href="http://www.w3.org/TR/html4/struct/links.html#edef-BASE" rel="noreferrer">BASE
和LINK
可以有一个href
属性:这将返回具有
href
属性的元素数量。问题越具体,答案就越具体。Since the elements
A
,AREA
,BASE
andLINK
can have ahref
attribute:That will return the number of elements with a
href
attribute. The more specific the question, the more specific the answers.