最新回答 / wty521
function changeSS(){ var a=document.getElementById("txt"); a.style.width="300px"; a.style.height="200px";}是改div的宽高
2016-03-18
最新回答 / qq_夏日青枫_0
你<input>语句中onClick="函数名"是不是没有和function 函数名对应起来?例如:function changeS(){var a=document.getElementById("txt");a.style.height="200px";a.style.width="300px"}
2016-03-18
最新回答 / yj623616886
<input type="button" value="改变颜色" onclick="Ccolor()"> <input type="button" value="改变宽高" onclick="Cwh()"> <input type="button" value="隐藏内容" onclick="N()"> <input type="button" value="显示内容" onclick="B()"> <input type...
2016-03-16
最赞回答 / mfkayuff
1、代码是根据文档流(从上至下)执行的, 所以hello是后面显示2、和ID为p1操作一样,document.getElementById('p2').style.color="blue";
2016-03-16
最新回答 / 左边_右边
var b=confirm("取消设置?"); if(b==true){ a.removeAttribute("style") }或者直接归位 if(b==true){ a.style.color="#000";a.style.backgroundColor="#fff";a.style.width="600px"; a.style.height="400px"; a.style.display="block" }
2016-03-15
最赞回答 / chrisyuan
window.open("ans",'_blank','width=400px,height=500px,menubar=no,toolbar=no');中的ans应该去掉双引号
2016-03-14