已采纳回答 / __5yu__
在else里面打个空白就行了if(mywin){ window.open('http://www.imooc.com','_blank','width=400','height=500','menubar=no','toolbar=no'); }else{ };
2020-07-15
最赞回答 / 慕粉3364548
<!DOCTYPE html><html> <head> <title> new document </title> <meta http-equiv="Content-Type" content="text/html; charset=gbk"/> <script type="text/javascript"> // 新窗口打开时弹出确认框,是否打开 function openWi...
2020-07-15
最新回答 / tidy5171858
如果不写这个按钮,你可以将 var mychar="I love javascript"; alert("hello");不写在函数里面,就可以直接输出,但是写在了函数里面,就需要有事件去触发这个函数,有单击,双击,当鼠标移动到上面等这些事件都可以触发。
2020-07-14
已采纳回答 / 慕数据6177396
var 和 function只是分别用来定义基本类型变量和函数的关键字而已,你问的问题没有一点意义,这样我给你一个稍微有点意义的问题你去想下,函数和变量有什么区别,都是用来定义变量的var,let ,const有什么区别,普通函数和构造函数有什么区别
2020-07-13
最新回答 / qq_洞天_0
function openWindow(){ var myindex = confirm("确认打开新窗口吗?"); // 新窗口打开时弹出确认框,是否打开if(myindex == true){ window.open('http://www.imooc.com/','新窗口','width=400,height=500,menubar=no,status=no,scrollbars=yes');} }
2020-07-07
function openWindow (){
confirm("是否打开新的窗口") == true ? window.open("http://" + prompt('请输入网址', 'www.imooc.com'), '_blank','width=400,height=500,menuber=no.toolbar=no') : null;
}
confirm("是否打开新的窗口") == true ? window.open("http://" + prompt('请输入网址', 'www.imooc.com'), '_blank','width=400,height=500,menuber=no.toolbar=no') : null;
}
最新回答 / 前端学习中
如果b不为空值,就是说添加了网址进去,就执行这个指令,你再补充一个else,把网址去掉,就能看到空值下输出的东西<!DOCTYPE html><html><head> <title>Test</title> <script type="text/javascript"> function openWindow() { var a = confirm("是否打开新窗口"); ...
2020-07-03