首页 > 代码库 > 一个链接打开两个地址

一个链接打开两个地址

<html>
<head>
<title>一个链接打开两个地址</title>
<script LANGUAGE="JavaScript">
function hrefClick(newWin, locationWin) {
   window.open(newWin);          //打开新的窗口
   window.location = locationWin;//当前位置窗口也改变
}
</script>
</head>
<body>
    <a href="javascript:hrefClick(‘http://www.google.cn‘, ‘http://www.baidu.com‘);">
打开页面</a>

</body>
</html>