qq_见怪不怪_0
2016-04-21 19:45
<script type="text/javascript">
var mychar=document.getElementById("txt");
function changeColor(){
mychar.style.color="red";
mychar.style.backgroundColor="blue";
}
function changeSize(){
mychar.style.width="200px";
mychar.style.height="300px";
}
function hidetext(){
mychar.style.display="none";
}
function showtext(){
mychar.style.display="block";
}
function resttext(){
var message = confirm("你确定要重置所有设置么?");
if(message==true){
mychar.removeAttribute("style");
}
}
</script>
var message = confirm("你确定要重置所有设置么?");分号错误应为英文状态的 ' ; '
你在input里面是否调用了各个函数,我瞅了瞅你的代码没什么错误 ,你自己找找有没有不是英文符号的,是中文的
<!--当点击相应按钮,执行相应操作,为按钮添加相应事件-->
<input type="button" value="改变颜色" onclike="test1()" />
<input type="button" value="改变宽高" onclick="test2()" />
<input type="button" value="隐藏内容" onclick="test3()" />
<input type="button" value="显示内容" onclick="test4()" />
<input type="button" value="取消设置" onclick="test5()" />
</form>
<script type="text/javascript">
//定义"改变颜色"的函数
var a=getElementById("txt");
function test1()
{a.style.color="red";
a.style.background="blue";
}
//定义"改变宽高"的函数
function test2()
{a.style.width="700px";
a.style.height="300px";
}
//定义"隐藏内容"的函数
function test3(){
a.style.display="none";
}
//定义"显示内容"的函数
function test4(){
a.style.display="block";
}
//定义"取消设置"的函数
function test5(){
var reset = confirm("是否取消设置?");
if(reset=true){
mychar.removeAttribute("style");
</script>
我这个也运行不了 不知道什么问题
<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="resttext()">
</form>
button点击事件添加了没有,看不到回答个毛
JavaScript入门篇
739816 学习 · 9566 问题
相似问题