已采纳回答 / 慕先生0152934
点击取消,其实返回值是null,可以多判断一下,如果是null时就不打印任何内容; function rec(){ var score; //score变量,用来存储用户输入的成绩值。 score = prompt("请输入成绩",60); if(score>=90) { document.write("你很棒!"); } else if(score>=75) { document.write("不错吆!"); } else if(score>=60) { do...
2016-05-18
已采纳回答 / 行恒
function dclear(){ var mm=confirm("是否恢复原始设置:"); if(mm==true) { mydd.className="txt"; }}有问题。function dclear(){ if(confirm("确定取消设置吗?")){ var mychar=document.getElementById("txt"); mychar.style.color="#000"; mychar.style.background="#ff...
2016-05-18
已采纳回答 / JUST流年
你的宽高没有打引号。function weight(){ var kuangao=document.getElementById("txt"); kuangao.style.width="300px"; kuangao.style.height="200px";}
2016-05-17
已采纳回答 / hernandes
兄弟,hello world??不懂你问的什么,这一节内容就是修改标签内容啊,注意是内容,修改后浏览器自动编译当然显示新得内容,当然这些动作我们是看不见的
2016-05-15
已采纳回答 / LCchao
<script type="text/javascript"> var score=80; if(score>=60&&score<=70){document.write("恭喜及格了");} else if(score>=80){document.write("优秀");} else{document.write("无");} </script>;位置错误
2016-05-15
已采纳回答 / 传说408崛起
function add(){ var p1 = document.getElementById("p1"); document.write(p1.className+"<br>"); }改成 function add(){ var p1 = document.getElementById("p1"); p1.className = "one"; }
2016-05-15
已采纳回答 / qq_天道酬勤_5
第二个更加准确和清楚,直接说明了链接的JavaScript文件是一个JavaScript文档。第二个是标准的JavaScript外部导入样式。
2016-05-15
已采纳回答 / 慕姐7953038
http-equiv="Content-Type" content="text/html:将告诉浏览器准备接受一个 HTML 文档。charset=utf-8:支持中文的字符编码。
2016-05-14