window.open(链接地址);
如:
<html>
<body>
<script>
function openLink()
{
window.open("http://www.google.com.hk");
}
</script>
<input type="button" value="打开新链接" name="newLink" onclick="openLink();" />
</body>
</html>window.open(链接地址); 如: function openLink() { window.open("http://www.google.com.h...
window.open(链接地址);
如:
<html>
<body>
<script>
function openLink()
{
window.open("http://www.google.com.hk");
}
</script>
<input type="button" value="打开新链接" name="newLink" onclick="openLink();" />
</body>
</html>