最新回答 / _不惊云丶
问题更新 : a. 之前 switch 语句的错误在于 case 后面没有加 ' : ' 号 ; b.case 0 中的display 纯属是测试用的; c.现在的问题 : switch 中出现了 count++ 后穿透 , 直接到达 case6 , 并且不会再改变了 -= = !
2016-04-09
最赞回答 / _不惊云丶
mychar 只是自己定义的一个变量名 , 你可以定义一个var txt=document.getElementById("指定id");然后通过你获取的标签对象设置属性 txt.style.color="red";
2016-04-09
最新回答 / qq_久伴_9
function openWindow(){ var s=confirm("打开吗?"); if(s==true){ var y=prompt("打开什么?"); if(""!==y&&y!==null){ window.open('http://www.baidu.com','width=400,height=500,bar=false') } else{ alert("我是prompt的el...
2016-04-08
最赞回答 / 黎俊杰
con.style.color="red";不能直接操作id啊。获取id为con的元素在变量mychar中,然后操作变量mychar就可以了,应该是HTML不能直接识别那个id,所以才要获取id在变量中。
2016-04-08
最新回答 / simon_qin
<script type="text/javascript"> function contxt() //定义函数 { alert("哈哈,调用函数了!"); } </script>_____________________________________________________________________________________________<form> <input type="b...
2016-04-07
最赞回答 / 一只特立独行的doge
(p1.className='one')里面的p1是自己定义的,指向id="p1"里面的p1。你可以改的,比如var newDefine=document.getElementById("p1");newDefine.className="one";此时的newDefine就和上面(p1.className="one")里的p1一样了,所以是自己定义的。这句话变得不是id,变得是p1的类选择器class的值
2016-04-07
最新回答 / dadi123
function change5() { var re = confirm("是否取消设置"); if(re == true) { color.style = ''; }}
2016-04-07