如何使所有 具有相同的目标=“_self”
如何通过 jQuery 或 javascript 使所有 链接具有相同的目标“_self”?
How can I make all <a>
link has the same target of "_self" through jQuery or javascript?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
将其放入
中:
无需 JavaScript - HTML 已内置此功能!
Put this in the
<head>
:No need for JavaScript - HTML has the feature built in!
注意:这将覆盖页面上所有
ANCHOR
标记的target
属性。如果您只想将它们添加到未声明的位置,RichieHindle 的答案将是最好的。Note: This will override all
ANCHOR
tag'starget
attribute on the page. RichieHindle's answer would be best if you just want to add them where they aren't declared.