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

取消设置的思路问题 --我是把原来的初值一个个保存,有没有一步到位保存所有数值的方法

我设置一个默认值,存储原来的mychar的各项参数,我试了下 默认值=mychar 然后  mychar=默认值 好像不行······


var mychar = document.getElementById("con");

        var 默认值

        默认值.style.color = mychar.style.color;

        默认值.style.backgroundColor = mychar.style.backgroundColor;

        默认值.style.width = mychar.style.width;

        默认值.style.height = mychar.style.height;

        默认值.style.display = mychar.style.display;


正在回答

5 回答

使用removeAttribute("style")

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

<h2 id="con">JavaScript课程</h2>

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

   //定义变量保存默认值
   var color = txt.style.color;
   var backgroundColor = txt.style.backgroundColor;
   var width = txt.style.width;
   var height = txt.style.height;
   var block = txt.style.display;

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

   function cancelSet() {
    var message = confirm("取消设置?");
    if (message == true) {
     txt.style.color = color;
     txt.style.backgroundColor = backgroundColor;
     txt.style.width = width;
     txt.style.height = height;
     txt.style.display = block;
    }
   }

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

用confirm函数

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

举报

0/150
提交
取消

取消设置的思路问题 --我是把原来的初值一个个保存,有没有一步到位保存所有数值的方法

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