編程練習出不來,救命
?function openWindow(){
????? var mes=confirm("是否要打開一個新的網頁?");
????? if(mes==true){
????????? var xz=prompt("請輸入網址:","http://imooc.com/");
????? }
????? window.open(xz,"_blank","width=400,height=500,menvbar=no,toolbar=no");
????? }
?function openWindow(){
????? var mes=confirm("是否要打開一個新的網頁?");
????? if(mes==true){
????????? var xz=prompt("請輸入網址:","http://imooc.com/");
????? }
????? window.open(xz,"_blank","width=400,height=500,menvbar=no,toolbar=no");
????? }
2016-07-26
舉報
2016-07-26
我去 標點符號錯了
2016-07-26
<a href="#" onclick="openWindow()">test</a>
<script type="text/javascript">
? ?function openWindow(){
? ? ? ?var mes=confirm("是否要打開一個新的網頁?");
? ? ? ?if(mes==true){
? ? ? ? ? ?var xz=prompt("請輸入網址:","http://imooc.com/");
? ? ? ?}
? ? ? ?window.open(xz,"_blank","width=400,height=500,menvbar=no,toolbar=no");
? ?}
</script>