var c=document.getElementById("id1");
function cecolor()
{
c.style.color="red";
c.style.backgroundColor="#ccc";
}
function cewh()
{
c.style.width="200px";
c.style.height="100px";
}
function hide()
{
c.style.display="none";
}
function show()
{
c.style.display="block";
}
function re()
{
var ss=confirm("是否取消设置");
if(ss==true)
c.removeAttribute("style");
}
<input type="button" value="改变颜色" onclick="cecolor()" />
<input type="button" value="改变宽高" onclick="cewh()" />
<input type="button" value="隐藏内容" onclick="hide()" />
<input type="button" value="显示内容" onclick="show()" />
<input type="button" value="取消设置" onclick="re()" />
King_520
King_520
King_520
相关分类