我是按視頻上寫的,上面是是可以的 。。。。哪裡錯了。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。
我測試了下,是因為函數名你使用select這個跟js本身方法有沖突,換個名稱就可以了
<html>
<head>
<title>宋水林</title>
<script type="text/javascript">
function openDialog(){
window.open('http://www.baidu.com','_blank','width=500,height=400');
}
</script>
</head>
<body>
編號<input type="text" id="id1"/></br>
姓名<input type="text" id="id2"/></br>
<input type="button" value="選擇" onclick="openDialog();"/>
</body>
</html>