<form>
<!--当点击相应按钮,执行相应操作,为按钮添加相应事件-->
<input type="button" value="改变颜色" onclick="yanse()">
<input type="button" value="改变宽高" onclick="gao()">
<input type="button" value="隐藏内容" onclick="hide()">
<input type="button" value="显示内容" onclick="nohide()">
<input type="button" value="取消设置" onclick="quxiao()">
</form>
<script type="text/javascript">
var mychar=document.getElementById("txt");
//定义"改变宽高"的函数
function yanse(){
mychar.style.color="blue";
mychar.style.backgroundColor="yellow";
}
//定义"改变宽高"的函数
function gao(){
mychar.style.width="400px";
mychar.style.height="200px";
}
//定义"隐藏内容"的函数
function hide(){
mychar.style.display="none";
}
//定义"显示内容"的函数
function nohide(){
mychar.style.display="block";
}
//定义"取消设置"的函数
function quxiao(){
var wenti=confirm("是否取消设置?");
if(wenti==ture){
mychar.removeAttribute('style');
}
}
</script>
true写成了ture
<script type="text/javascript">var mychar=document.getElementById("txt"); //定义"改变宽高"的函数 function yanse(){ mychar.style.color="blue"; mychar.style.backgroundColor="yellow"; }//定义"改变宽高"的函数 function gao(){ mychar.style.width="400px"; mychar.style.height="200px"; }//定义"隐藏内容"的函数 function hide(){ mychar.style.display="none"; }//定义"显示内容"的函数 function nohide(){ mychar.style.display="block"; }//定义"取消设置"的函数 function quxiao(){ if(confirm("是否取消设置?")); { mychar.style=""; } } </script>
<script type="text/javascript">
var mychar=document.getElementById("txt");
//定义"改变宽高"的函数
function yanse(){
mychar.style.color="blue";
mychar.style.backgroundColor="yellow";
}
//定义"改变宽高"的函数
function gao(){
mychar.style.width="400px";
mychar.style.height="200px";
}
//定义"隐藏内容"的函数
function hide(){
mychar.style.display="none";
}
//定义"显示内容"的函数
function nohide(){
mychar.style.display="block";
}
//定义"取消设置"的函数
function quxiao(){
if(confirm("是否取消设置?"));
{
mychar.style="";
}
}
</script>
终于成了