标签: javascript html target
所以,这是我的代码:
function link1() { window.location.href="Example"; }
如何在JS中实现_blank函数?
干杯
(注意:我没有使用图书馆,也不打算使用图书馆)
答案 0 :(得分:3)
window.open会做的。
function link1() { window.open("http://www.example.com"); }