通过Javascript在外部窗口中打开链接

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了通过Javascript在外部窗口中打开链接相关的知识,希望对你有一定的参考价值。

Rather than using target="_blank", which is deprecated by the W3C in Xhtml, you should use rel="external" for links that you want to pop out in a new window. This is the javascript that makes it happen.
  1. function externalLinks() {
  2. if (!document.getElementsByTagName) return;
  3. var anchors = document.getElementsByTagName("a");
  4. for (var i=0; i<anchors.length; i++) {
  5. var anchor = anchors[i];
  6. if (anchor.getAttribute("href") &&
  7. anchor.getAttribute("rel") == "external")
  8. anchor.target = "_blank";
  9. }
  10. }
  11. window.onload = externalLinks;

以上是关于通过Javascript在外部窗口中打开链接的主要内容,如果未能解决你的问题,请参考以下文章

JavaScript jQuery:在外部窗口中打开链接

jQuery:在外部窗口中打开链接

QWebEngineView 在外部浏览器中打开

Webview 链接在外部浏览器中打开

如何在外部浏览器而不是应用内(instagram)中打开链接?

为啥我的侧载 Excel Javascript 加载项在外部浏览器中打开,而不是在任务窗格中打开?