拓展一下,打開你想輸入的任意網(wǎng)址,僅供參考:
<!DOCTYPE?html>
<html>
????<head>
????????<title>new?document</title>
????????<meta?charset="UTF-8"?/>
????????<meta?http-equiv="Content-Type"?content="text/html;?charset=gbk"?/>
????</head>
????<body>
????????<input?type="button"?value="新窗口打開網(wǎng)站"?onclick="openWindow()"?/>
?
????????<script?type="text/javascript">
????????????function?openWindow()?{
????????????????var?message?=?confirm("是否要打開新網(wǎng)站?");
????????????????if?(message?==?true)?{
????????????????????var?address?=?prompt("請輸入網(wǎng)址");
????????????????????if?(address)?{
????????????????????????window.open("http://"+address,?"_blank","width=400,height=500,menubar=no,toolbar=no");
????????????????????}
????????????????}?else?{
????????????????????alert("已取消");
????????????????}
????????????}
????????</script>
????</body>
</html>
2019-11-29
輸入網(wǎng)址的時候,不需要輸入http協(xié)議了