为啥没反应
为啥点击了没反应啊
<input type="button" value="改变颜色" onClick="changeColor()">
<input type="button" value="改变宽高" onClick="changeWidth()">
<input type="button" value="隐藏内容" onClick="displayNone()">
<input type="button" value="显示内容" onClick="displayBlock()">
<input type="button" value="取消设置" onClick="setConfirm()">
</form>
<script type="text/javascript">
var txt=document.getElementById("txt");
//定义"改变颜色"的函数
function changeColor{
txt.style.color="red";
txt.style.backgroundColor="#CCC";
}
//定义"改变宽高"的函数
function changeWidth(){
txt.style.width="200px";
txt.style.height="300px";
}
//定义"隐藏内容"的函数
function displayNone(){
txt.style.display="none";
}
//定义"显示内容"的函数
function displayBlock(){
txt.style.display="block";
}
//定义"取消设置"的函数
function setConfirm(){
var meg=confirm("重置?");
if(meg){
txt.removeAttribute("style");
}
}