已采纳回答 / weixin_慕前端8193251
<input type="button" value="改变颜色" onclick="changeColor()"/> <input type="button" value="改变宽高" onclock="changeWidth()"/> <input type="button" value="隐藏内容" onclock="hide()"/> <input type="button" value="显示内容" onclock="show()...
2020-03-04
已采纳回答 / 三大法则
共 四 ?处错误 function sethwidthheight(){ var b=document.getElementById("txt"); e.style.width=100px; e.style.height=100px;?函数名多了个h,变量名不统一,b改成e就行了,100px需要加引号 var c=confirm("你确定要恢复所有设置吗?"); if(c==true){ e.removeAttribute(...
2020-02-25
已采纳回答 / 慕用1151135
function cancel(){ var c=confirm.("确定恢复吗?"); if(c=true) { a.removeAttribute("style"); b.removeAttribute("style"); }你最后一段代码有几个问题var c=confirm.("确定恢复吗?");括号前多了一个点。 if(c=true)这里应该为双等号 if(c==true) a.removeAttribute("style");这里应该为单引号‘ style’改了之...
2020-02-22