作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个包含多个超链接的网页。他们都有一个 href
“#
”。它们是动态生成的。单击其中任何一个函数时如何调用函数?我希望保留默认的超链接操作。
最佳答案
window.onload = function () {
document.body.onclick = function (e) {
var target = e.target,
isLink = target.tagName.toLowerCase() === 'a';
if (isLink && target.getAttribute('href') === '#') {
lickFun(e);
}
};
function lickFun(e) {
console.log('this is link');
console.log('href equals #');
}
}
关于javascript - 如何在我的页面上的所有超链接上调用函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27205398/
我是一名优秀的程序员,十分优秀!