Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这可能吗?我正在构建一个简单的 Facebook 应用程序,并且想要一个按钮在 _blank 窗口中加载外部链接,而应用程序的下一页在 _self 窗口中加载。我是 JavaScript 的新手,因此非常感谢任何帮助/建议!
谢谢!!
将单击事件侦听器添加到执行以下行的按钮:
window.open('http://www.example.org/external_link.html', 'New Window'); window.location.href = 'http://www.example.org/internal_link.html';
第一行可能会被一些弹出窗口阻止程序阻止,但让我们试一试。