为了账号安全,请及时绑定邮箱和手机立即绑定

为啥我的没任何显示

 <!--当点击相应按钮,执行相应操作,为按钮添加相应事件-->

    <input type="button" value="改变颜色" onclick="changecolor()">  

    <input type="button" value="改变宽高" onclick="changesize()">

    <input type="button" value="隐藏内容" onclick="hidecon()">

    <input type="button" value="显示内容" onclick="display()">

    <input type="button" value="取消设置" onclick="reset()">

  </form>

  <script type="text/javascript">


 var txt="document.getElementById("txt");

//定义"改变颜色"的函数

  function changecolor(){

   txt.style.color="red";

   txt.style.backgroundColor="green"; 

}

//定义"改变宽高"的函数

function changesize(){

    txt.style.width="700px";

    txt.style.height="400px";

}


//定义"隐藏内容"的函数

function hidecon(){

    txt.style.display="none";

}


//定义"显示内容"的函数

function display(){

    txt.style.display="block";

}


//定义"取消设置"的函数

function reset(){

    var message=confirm("是否取消设置");

   if(message==true){

            txt.removeAttribute('style'); 

}

}


正在回答

1 回答


 var txt="document.getElementById("txt");

多了个”

0 回复 有任何疑惑可以回复我~
#1

慕哥2479039 提问者

非常感谢!
2016-10-19 回复 有任何疑惑可以回复我~
#2

慕哥2479039 提问者

取消设置又不显示了
2016-10-19 回复 有任何疑惑可以回复我~
#3

哎哟Zhou哥哥 回复 慕哥2479039 提问者

a= document.getElementById("txt"); a.style.height="400px"; a.style.width="600px"; a.style.border="333 solid 1px"; a.style.padding="5px"; a.style.color="black"; a.style.backgroundColor="white";
2016-10-19 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

为啥我的没任何显示

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信