GoHr
2015-07-24 09:51
如题
卧槽还要5个字
prompt(text,defaultText) 是一个提示框,类似于confirm
text 是你要现实的提示框内容。
function openWindow(){ if(confirm("是否打开")){ var score = prompt("请输入网址","http://www.imooc.com/"); if(score){ window.open(score,'_blank','width=400px,height=500px,menubar=no,toolbar=no'); } } }
2015-07-25 08:35:35
共 2 条回复 >
prompt
这个是你输入的地址的变量吧
function openWindow(){ if(confirm("是否打开")){ var score = prompt("请输入网址","http://www.imooc.com/"); if(score){ window.open(score,'_blank','width=400px,height=500px,menubar=no,toolbar=no'); } } } 为什么代码语言中 window.open中还要加一个prompt的变量score 才能打开相应要求的网页 否则只会生成新标签页
2015-07-25 08:37:37
共 1 条回复 >
JavaScript入门篇
739814 学习 · 9566 问题
相似问题
回答 3
回答 2