最赞回答 / qq_慕函数3177880
<!DOCTYPE HTML><html><head><meta http-equiv="Content-Type" content="text/html; charset=gb2312"><title>className属性</title><style> body{ font-size:16px;} .one{ border:1px solid #eee; width:230px; height:50p...
2019-03-30
<script type="text/javascript">
function openWindow(){
var asd=confirm("是否打开");
if(asd==true){
window.open('http://www.imooc.com','width=400,height=500,menubar=no,toolbar=no');
}
else{}
}
function openWindow(){
var asd=confirm("是否打开");
if(asd==true){
window.open('http://www.imooc.com','width=400,height=500,menubar=no,toolbar=no');
}
else{}
}
已采纳回答 / qq_慕设计3574339
if(score>=90) { document.write("你很棒!"); } else if(score>=75) { document.write("不错吆!"); } else if(score>=60) { document.write("要加油!"); } else if(score>0) { document.write("要努力了!"); }改成这样就好了,当前面的if语句和else if语句都没执行的时候就...
2019-03-29
最赞回答 / 慕慕哒6103098
如果你要在隐藏了mychar之后打印mychar的内容,就要写mychar.style.display="none"documentl.write(mychar.innerHTML)而你这句document.write(mychar.style.display="none")等同于mychar.style.display="none"document.write(mychar.style.display)所以打印的是mychar的display属性
2019-03-29
最赞回答 / qq_慕设计3574339
function window()写错了,Window而不是window,window.open('s','_blank','width=400,height=500,menubar=no,toolbar=no, status=yes ,scrollbars=yes')s不用打引号,打了引号表示你打开了一个网址是s的网站,没有这个网站。你直接打一个s,引用的就是你上面s参数保存的网址
2019-03-29