为什么提交后提示通过,点击相应按钮想看效果结果没有任何反应??
javascript入门篇4-1编程挑战,程序都写好了,提交也提示通过了,为什么点击右侧相应按钮没有任何变化??
代码如下:
<input type="button" value="改变颜色" onClick="yanse()"/>
<input type="button" value="改变宽高" onClick="kuangao()"/>
<input type="button" value="隐藏内容" onClick="yincang()"/>
<input type="button" value="显示内容" onClick="xianshi()"/>
<input type="button" value="取消设置" onClick="shezhi()"/>
</form>
<script type="text/javascript">
//定义"改变颜色"的函数
function yanse(){
var machar=document.getElementById("txt");
machar.style.color="blue";
machar.style.backgroundColor="red";
}
//定义"改变宽高"的函数
function kuangao(){
var machar=document.getElemengById("txt");
machar.style.width="500";
machar.style.height="300";
}
//定义"隐藏内容"的函数
function yincang(){
var machar=document.getElementById("txt");
machar.style.display="none";
}
//定义"显示内容"的函数
function xianshi(){
var machar=document.getElementById("txt");
machar.style.display="block";
}
//定义"取消设置"的函数
function shezhi(){
if(confirm"是否取消设置")
var machar=document.getElementById("txt");
machar.style.width="600";
machar.style.height="400";
machar.style.color="#000";
machar.style.blockgroundColor="#fff";
machar.style.padding="5px";
}