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.
我在下面尝试了 javascript,它确实在打开的窗口中打开了 url,但它清除了当前窗口中的 url 并指向新的 URL。
window.open('http://www.google.com','_blank');
发生这种情况是因为您拥有 _blank 的第二个位置是名称应该在的位置。
我建议作为上面的链接,Nathan 帖子建议这样做。:
window.open(url, windowName, "height=200,width=200");
然后对导致新窗口打开的任何事件进行一些 javascript 触发。
因此,假设它是一个图像,为图像设置 Target="_blank",然后设置一个 OnClick 事件以调用其中包含 window.open 代码的函数。
那会成功的。高温高压