最新回答 / 我乐意
function cancel(){ var mychar=document.getElementById("txt"); var message=confirm("确定取消所有设置?"); if(message==true){ mychar.removeAttribute("style"); } else{ alert("保留设置"); } }
2016-03-10
最赞回答 / qq_空_72
设置width,height要加单位PX;为"500px"或者"500"+"px"然后你的set5的‘}’没有加removeAttribute("style");前面要加对象使之为 div.removeAttribute("style");这样才能知道重置的而是谁的style
2016-03-10
最新回答 / 瓶瓶罐罐_瓶子瓶子呦
var mye=document.getElementById("txt");function resetStyle(){ var message=confirm("你确定重置所有样式吗?"); if(message==(true){ mye.removeAttribute('style')}}
2016-03-09
最新回答 / 未之未央丿
通过这段代码能很清楚的看到<...code...>我添加了一个颜色,从而得到的结果是。(不知道为什么上不了图,你试试那段代码)第一个javaScript背景色变成了灰色。也就是<p id="con" style="background:#ddd">JavaScript</p>
2016-03-09