最后一个按钮一直没反应不知道怎么做
<!--当点击相应按钮,执行相应操作,为按钮添加相应事件-->
<input type="button" value="改变颜色" onClick="colorchange()">
<input type="button" value="改变宽高" onClick="wh()" >
<input type="button" value="隐藏内容" onClick="yc()">
<input type="button" value="显示内容" onClick="xs()">
<input type="button" value="取消设置" onClick="qx()">
</form>
<script type="text/javascript">
//定义"改变颜色"的函数
var c=document.getElementById("txt");
function colorchange(){
c.style.color="red";
}
//定义"改变宽高"的函数
function wh(){
document.getElementById("txt").style.width="300px";
document.getElementById("txt").style.height="300px";
}
//定义"隐藏内容"的函数
function yc(){
c.style.display="none";
}
//定义"显示内容"的函数
function xs(){
c.style.display="block";
}
//定义"取消设置"的函数
function qx(){
var set=comfirm("是否取消设置");
if(set==true){
txt.removeAttribute('style');
}
}