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

写完了phpstorm

写完了

<form>
   <!--当点击相应按钮,执行相应操作,为按钮添加相应事件-->
   <input type="button" value="改变颜色" onclick="changeColor()">
   <input type="button" value="改变宽高" onclick="changeHw()">
   <input type="button" value="隐藏内容" onclick="dis()">
   <input type="button" value="显示内容" onclick="xS()">
   <input type="button" value="取消设置" onclick=" qX()">
</form>
<script type="text/javascript">
   //定义"改变颜色"的函数
   var txt=document.getElementById("txt");

   function changeColor(){
       var txt=document.getElementById("txt");
       txt.style.color="red";
       txt.style.backgroundColor="blue"
   }



   //定义"改变宽高"的函数
   function changeHw(){
       var txt=document.getElementById("txt");
       txt.style.width="300px";
       txt.style.height ="500px";
   }

   //定义"隐藏内容"的函数
   function dis(){
       var txt=document.getElementById("txt");
       txt.style.display="none";
   }

   //定义"显示内容"的函数
   function xS(){
       var txt=document.getElementById("txt");
       txt.style.display="block";
   }

   //定义"取消设置"的函数
   function qX(){
       var message=confirm("你确定要重置所有设置么?");
       if(message==true){
           txt.removeAttribute('style');
       }
   }

正在回答

1 回答

取消设置应该这样写

 function qX(){

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

var message=confirm("你确定要重置所有设置么?");
       if(message==true){
           txt.removeAttribute('style');
       }
   }

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

举报

0/150
提交
取消
JavaScript入门篇
  • 参与学习       740173    人
  • 解答问题       9566    个

JavaScript做为一名Web工程师的必备技术,本教程让您快速入门

进入课程

写完了phpstorm

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