已采纳回答 / 慕前端8788530
function openWindow(){ var a=confirm("是否打开"); var b; if (a){ var b=prompt("请输入网址"); alert(b); window.open(b,'_blank'); } }自己对着改吧 惨不忍睹,函数的定义都不对,null也没搞清,还有乱嵌套,看着头大。
2017-05-26
已采纳回答 / 慕用2276564
window.alert = function(str) { var shield = document.createElement("DIV"); shield.id = "shield"; shield.style.position = "absolute"; shield.style.left = "0px"; shield.style.top = "0px"; shield.style.width = "100%"; shield.style.height = document.body.scro...
2017-05-23
已采纳回答 / 假装不是程序猿
confirm 后面那个括号是中文的括号,需要修改为英文下的括号比较 open === true 和 cart !== null 应该这样写 其实这里的open === true 可以直接写一个 open 就可以了 不用比较,因为confirm返回的直接是true 或 false 可以直接给if
2017-05-21
已采纳回答 / 慕运维0082480
<!DOCTYPE html><html> <head> <title> new document </title> <meta http-equiv="Content-Type" content="text/html; charset=gbk"/> <script type="text/javascript"> var nw = function openwindow(){ var...
2017-05-21