如何使所有 具有相同的目标=“_self”

发布于 2024-11-29 03:09:46 字数 81 浏览 0 评论 0原文

如何通过 jQuery 或 javascript 使所有 链接具有相同的目标“_self”?

How can I make all <a> link has the same target of "_self" through jQuery or javascript?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

谜兔 2024-12-06 03:09:46

将其放入 中:

<base target="_self">

无需 JavaScript - HTML 已内置此功能!

Put this in the <head>:

<base target="_self">

No need for JavaScript - HTML has the feature built in!

错爱 2024-12-06 03:09:46
$('a[href]').attr('target','_self');

注意:这将覆盖页面上所有 ANCHOR 标记的 target 属性。如果您只想将它​​们添加到未声明的位置,RichieHindle 的答案将是最好的。

$('a[href]').attr('target','_self');

Note: This will override all ANCHOR tag's target attribute on the page. RichieHindle's answer would be best if you just want to add them where they aren't declared.

两个我 2024-12-06 03:09:46
$('a').attr('target', '_self');
$('a').attr('target', '_self');
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文