<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>
一个链接打开两个地址
时间: 2024-12-17 10:34:41