请问JS中函数的名称有规定的吗?为什么我的这段代码的结果是没有反应?哪里错了?
</div>
<form>
<!--当点击相应按钮,执行相应操作,为按钮添加相应事件-->
<input type="button" value="改变颜色" onClick="changecolor()">
<input type="button" value="改变宽高" onClick="changesize()" >
<input type="button" value="隐藏内容" onClick="hidetext()">
<input type="button" value="显示内容" onClick="showtext()">
<input type="button" value="取消设置" onClick="rac()">
</form>
<script type="text/javascript">
//定义"改变颜色"的函数
function changecolor(){
var obj=document.getElementById("txt");
obj.style.color="navy";
obj.style.backgroundColor="pink";
}
//定义"改变宽高"的函数
function changesize(){
var obj=document.getElementById("txt");
obj.style.width="350px";
obj.style.height="300px";
}
//定义"隐藏内容"的函数
function hidetext(){
obj.style.display="none";
}
//定义"显示内容"的函数
function showtext(){
obj.style.display="block";
}
//定义"取消设置"的函数
function rac(){
var mymessage=confirm("是否取消设置?");
if(mymessage==true)
{obj.style.color="black";
obj.style.backgroundColor="white";
obj.style.width="600px";
obj.style.height="400px";
}
}
</script>
</body>
</html>