超链接如何在新窗口打开2个地址?

来源:百度知道 编辑:UC知道 时间:2024/06/24 04:30:16
<a href="https://www.123.com/" target="_balnk">打开

如何实现点一个超链接 打开2个不同的网站?
怎么都不行啊? 我用的是FrontPage2003 在软件里点预览 确实有效能打开2个地址 .
保存后 打开htm就不行

<a href="https://www.123.com/" target="_balnk" onclick="window.open('http://www.zu14.cn');">打开</a>

<head>
<script language=javascript>
function open2win(){
window.open("tt.html","t1",null,null);
window.open("ttt.html","t2",null,null);
}
</script>
</head>

<body>

<a href="javascript:open2win();">open</a>
</body>

<a href="#" onclick="window.open('1.htm');window.open('2.htm');">打开</a>

单词拼错了。blank

怎么可能.....