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

取消设置按钮不管用

<input type="button" value="改变颜色" onclick="color()">
   <input type="button" value="改变宽高" onclick="wh()">
   <input type="button" value="隐藏内容" onclick="hide()">
   <input type="button" value="显示内容" onclick="show()">
   <input type="button" value="取消设置" onclick="exit()">
</form>
<script type="text/javascript">
   function color() {
       var mycolor = document.getElementById("con")
       mycolor.style.color = "blue"
       mycolor.style.backgroundColor = "black"
   }
   function wh() {
       var myweight = document.getElementById("txt")
       myweight.style.width = "100px"
       myweight.style.height = "600px"
   }
   function hide() {
       var hide = document.getElementById("txt")
       hide.style.display = "none"
   }
   function show() {
       var show = document.getElementById("txt")
       show.style.display = "block"
   }
   function exit() {
       var quxiao = confirm("你要取消设置吗")
       if(quxiao == true)
   {
       mycolor.removeAttribute("style")
       myweight.removeAttribute("style")
       hide.removeAttribute("style")
       show.removeAttribute("style")

正在回答

2 回答

  function exit() {
       var quxiao = true;

       if(quxiao == confirm("你要取消设置吗"))

   {.......

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

我觉得是你的exit函数内没有定义mycolor、myweight、hide、show这几个,可以在这里面重新 var hide = document.getElementById("txt"),或者将你的var mycolor = document.getElementById("con")这些语句全放到函数外应该就好了。

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

举报

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

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

进入课程

取消设置按钮不管用

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