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