HTML:onclick 优先于 href
我想知道是否可以在 html 标签上同时使用 onclick 和 href 并优先考虑 onclick 而不是 href。 我只想获得 robots/oldbrowsers 可访问性的 href。
谢谢
I would like to know if it's possible to have both onclick and href on a html tag and priorize the onclick over the href.
I just want to have a href for robots/oldbrowsers accessibility.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,只需从
onclick
处理程序返回false
,它将阻止默认操作,即浏览器打开href
中的链接。Yes, just return
false
from theonclick
handler and it will prevent the default action which is that the browser is opening the link in thehref
.如果您希望 JavaScript 不引人注目,则可以使用
addEventListener
而不是使用链接的onclick
属性来绑定事件。添加事件侦听器时,您可以定义一个
event
参数,该参数具有抑制元素默认行为的方法。在这种情况下,它将阻止浏览器导航到链接的href
。或者在 jQuery 中。 。 。
If you want your JavaScript to be unobtrusive, you can bind your events by using
addEventListener
instead of using theonclick
property of the link.When you add an event listener you can define an
event
parameter which has a method to suppress the default behavior of the element. In this case, it will stop the browser from navigating to thehref
of the link.or in jQuery . . .