于飞万里
2018-10-26 16:01
reset函数运行不了,是什么鬼?????
reset是关键字,不能用否则有冲突,你可以改成其他名字,这种简单而且涉及操作的英文如果出问题了,实在找不到原因基本上都可以注意一下是不是关键字冲突。
改一下函数名就可以了,不能用reset,会有冲突的。
其他的都能用就reset不行
<input type="button" onclick="changecolor()" value="改变颜色" >
<input type="button" onclick="changewidth()" value="改变宽高" >
<input type="button" onclick="content()" value="隐藏内容" >
<input type="button" onclick="display()" value="显示内容" >
<input type="button" onclick="reset()" value="取消设置" >
</form>
<script type="text/javascript">
var text=document.getElementById('con');
var box=document.getElementById('txt');
function changecolor(){
text.style.color='red';
box.style.backgroundColor='gray';
}
function changewidth(){
var box=document.getElementById('txt');
box.style.width='200px';
box.style.height='500px';
}
function content(){
box.style.display="none";
}
function display(){
box.style.display="block";
}
function reset(){
var srs = confirm("确认取消设置?");
if (srs==true)
{
box.style.color = "black";
box.style.backgroundColor = "white";
box.style.width = orignWidth;
box.style.height = orignHeight;
box.style.display = "block";
}
}
</script>
</body>
</html>
JavaScript入门篇
739814 学习 · 9566 问题
相似问题