最赞回答 / 墨色染流年
var selectH2=document.getElementById("con");var selectDiv=document.getElementById("txt");function rmChanges(){ var confirmRM=confirm("是否要取消设置?"); if(confirmRM==true){ selectH2.style=""; selectDiv.style=""; } }
2018-05-30
最新回答 / 阳火锅
你还没明白优先级的问题,你虽然设定了class... 但是style属性比class高。。所以你调用class并不会对原有的style进行覆盖。。按思路你必须先清除style。。
2018-05-30
最赞回答 / qq_精彩人生_3
<script type="text/javascript"> function openWindow(){ var mywin=confirm('要输入网址么') if(mywin==true) { var myw=prompt('请输入网址'); window.open(myw,'_blank','width=300,height=500') }} </script>
2018-05-29
最赞回答 / 小小瓦尼达
window.open('web','_blank','width=400px,height=500px,menubar=no,toolbar=no')这一句里边web是一个变量,不要加单引号引起来,否则引用不到 window.open(web,'_blank','width=400px,height=500px,menubar=no,toolbar=no')
2018-05-28
最新回答 / 外星人a
<!DOCTYPE html><html> <head> <title> new document </title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <script type="text/javascript"> function openWindow() { var open=confir...
2018-05-28
最赞回答 / 慕沐7780984
你与第一个if对应的else就是document.write("要努力");啊 想返回null就写成document.write("null");
2018-05-27
最新回答 / 我就是高明
第三个onclick写错了var massege=confirm("确定取消设置吗?");结尾分号的格式换成英文 mytxt.removeAttribute("stlye"); style写错了。看的我眼睛都花了<...code...>
2018-05-26