答案欢迎指正
我个辣鸡也可以实现此功能啦,可以给大家参考一下,欢迎指正
function openWindow(){ var mymessage=confirm("你确定要打开此网站吗?") if (mymessage==true) {window.open('http:////www.imooc.com/','_blank','width=300,height=500,menubar=no,toolbar=no')} else {null;} }
我个辣鸡也可以实现此功能啦,可以给大家参考一下,欢迎指正
function openWindow(){ var mymessage=confirm("你确定要打开此网站吗?") if (mymessage==true) {window.open('http:////www.imooc.com/','_blank','width=300,height=500,menubar=no,toolbar=no')} else {null;} }
2018-03-11
根据题目的要求,还需要添加一句prompt,向用户确认是否要打开http://www.imooc.com,用户可以选择打开其它的网址。
你的代码无法打开其它的网址。
举报