这一节一定要注意浏览器问题,大部分利用confirm选择窗口关闭后会又回到原来打开的网页,排除代码错误外,很大一部分原因就是浏览器问题,建议更换多个浏览器尝试,例如:搜狗高速浏览器,这个还是兼容性比较高的一个浏览器,适合咱们新手上手js代码。
2018-12-03
最新回答 / 慕U师
这是我自己写的function openWindow(){ var open=confirm("是否打开") // 新窗口打开时弹出确认框,是否打开 if(open==true){ window.open('http://www.imooc.com/','_balnk','width=400','height=500','menubar=no','toolbar=no'); } else{ alert("baibai") }
2018-12-03
已采纳回答 / 慕桂英2541989
是的.HTML是结构css是样式 而js可以说是给html加功能有静态的功能动态的功能等等结构搭好了。样式也添加好了。再学功能js其实很容易了
2018-12-03
已采纳回答 / 先思后做万无一失
<!DOCTYPE html><html> <head> <title> new document </title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <script type="text/javascript"> // 新窗口打开时弹出确认框,是否打开 // 通过输入对话框,确定...
2018-12-03
最新回答 / 慕瓜9309115
var ***=document.getElementById("con"); ***.style.color="red"; ***.style.backgroundColor="green";应该这样改变style叭,写在function下
2018-12-02
function openWindow(){
var newopen=confirm("是否打开网站");
if(newopen==true){
var i=prompt('打开这个网址','http://www.imooc.com/')
window.open('http://www.imooc.com/','_blank','width=400','height=500','menubar=no','toolbars=no')
}
}
var newopen=confirm("是否打开网站");
if(newopen==true){
var i=prompt('打开这个网址','http://www.imooc.com/')
window.open('http://www.imooc.com/','_blank','width=400','height=500','menubar=no','toolbars=no')
}
}
最新回答 / qq_慕仙0341908
<!DOCTYPE html><html> <head> <title> new document </title> <meta http-equiv="Content-Type" content="text/html; charset=gbk"/> <script type="text/javascript"> function openwindow(){ var a1=com...
2018-12-01