符合标准的等价于 target=“_blank”

发布于 2024-11-06 08:30:16 字数 137 浏览 0 评论 0原文

在某些情况下,我必须在新窗口/选项卡中打开链接。有没有一种方法对严格的 HTML 有效?使用 jQuery 来做到这一点是可以接受的,但我不想只是将 target="_blank" 偷偷带回 jQuery 中,这样验证器就看不到它们。

There are instances where I have to open links in a new window/tab. Is there a method of doing so that is valid for strict HTML? Using jQuery to do so would be acceptable, but I'd rather not just sneak the target="_blank"s back in w/ jQuery so that validators won't see them.

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

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

发布评论

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

评论(2

霞映澄塘 2024-11-13 08:30:16

既然你说 jQuery 是允许的。

<a href="http://mysite.com" class="newWindow">Open in new window</a>

$('a.newWindow').click(function(e){
   e.preventDefault();
   window.open(this.href);
});

你也可以通过普通的 JS 来做到这一点。这样你的 HTML 就不会到处都是 onclick 了。

编辑 - 根据 Ian 的建议更新为使用 e.preventDefault()

Since you said jQuery is allowed.

<a href="http://mysite.com" class="newWindow">Open in new window</a>

$('a.newWindow').click(function(e){
   e.preventDefault();
   window.open(this.href);
});

You could also do this via normal JS. This way your HTML won't have onclick peppered all over the place.

EDIT - Updated to use e.preventDefault() as per Ian's suggestion.

始终不够 2024-11-13 08:30:16

这有效: click me

但是, 用于附加事件处理程序的 onclick 属性通常是不可维护的。附加事件处理程序的适当方法取决于您的 JavaScript 框架。 selector.click(function) 适用于 jQuery。

This works: <a href="test.html" onclick="window.open(this.href); return false; ">click me</a>

However, the onclick attribute to attach event handlers is generally unmaintainable. The appropriate way to go about attaching the event handler depends on your javascript framework. selector.click(function) is appropriate in jQuery.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文