作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这是我的链接
<a href="#report" id="myreport">Generate Report</a>
它可以执行为
$('a#myreport').click(function () {/* codes */});
或
document.getElementById("myreport")
但是我如何从“href”(元素作为“报告”)而不是 ID 执行此操作?
最佳答案
使用 jQuery,您可以使用 attribute contains selector要轻松实现它,请查看:
$("a[href*='report']").click(function () {
/* codes */
});
看看我的 jsFiddle 实例:http://jsfiddle.net/ynevet/K4zZH/
来自 jQuery 文档:
Selects elements that have the specified attribute with a value containing the a given substring.
关于javascript - 在 JavaScript 或 Jquery 中查找 <a> 元素 href#value,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23182677/
我是一名优秀的程序员,十分优秀!