已采纳回答 / 我不是管家
我的建议是用户的可读性,例如你完全可以这样写var question = prompt("请输入数字‘1:更改宽高 2:更改颜色 3:隐藏内容 4:显示内容 5:取消设置’");然后判断语句的条件也改下这样不是对于用户来说方便了许多
2016-12-02
已采纳回答 / lwl0812
浏览器兼容问题。Mozilla、Firefox浏览器在配置文件中如果设置了dom.disable_window_open_feature.menubar 或 dom.disable_window_open_feature.toolbar 的值为true的话,即使你在window.open()里设置了这两个的值为no,也是不会起作用的。
2016-12-01
已采纳回答 / 不二是兔子
<!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 ans=confirm(...
2016-12-01
已采纳回答 / 慕粉3628429
<form> <!--当点击相应按钮,执行相应操作,为按钮添加相应事件--> <input type="button" value="改变颜色" > <input type="button" value="改变宽高" > <input type="button" value="隐藏内容" > <input type="button" value="显示内容" > <input type="bu...
2016-11-30
已采纳回答 / 学系学习
代码打错了function add1(){ var p2=document.getElemnetById("p2"); p2.className="two"; }
2016-11-30
已采纳回答 / 温水煮_青蛙
js设置样式要用等号噢,不能用括号;把mychar.style.display("none")改为mychar.style.display="none";把mychar.style.display("block")改为mychar.style.display="block";就可以啦~
2016-11-29
已采纳回答 / 温水煮_青蛙
呃,你定义的不是shuru吗,if语句里为什么写url?而且if语句后面不要加分号function openWindow(){ var queren=confirm("确定要打开新的网站吗?"); if(queren==true){var shuru=prompt("请输入你要访问的网址","http://www.imooc.com/"); if(shuru!=null) {window.open(shuru,"_blank",'width=400px,...
2016-11-29
已采纳回答 / 慕粉1125219373
如果你是在外部引入的js文件<script>需在代码前加上window.onload=function(){这里是执行的代码}也可引入个jquery库用$(function(){这里是执行的代码})
2016-11-29