这里使用了只带一个url作为参数的window.open函数用于在新窗口打开一个新网页
<!DOCTYPE html>
<html>
<head>
<script>
function open_win()
{
window.open("http://www.75271.com");
}
</script>
</head>
<body>
<form>
<input type="button" value="Open Window" onclick="open_win()">
</form>
</body>
</html>
