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

取消设置!!!!

//定义"取消设置"的函数 function changeConfirm(){   styles = document.getElementById("txt");    var changes = confirm("确定取消设置吗?");    if(changes==true){        styles.removeAttribute("style");    }else{        document.write("取消操作");    } }

正在回答

2 回答

  var text=document.getElementById("txt");
  var defaultSettings=text.style;
//定义"取消设置"的函数
function restoreSetting(){
    var ret=confirm("取消设置,恢复默认值?");
    if(ret){
       text.style=defaultSettings;
    }
}

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

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

   var set={

    changeColor:function(){

        txt.style.color="red";

        txt.style.backgroundColor="#ccc";

    },

    changeSize:function(){

        txt.style.width="300px";

        txt.style.height="300px";

    },

    objHide:function(){

        txt.style.display="none";

    },

    objShow:function(){

        txt.style.display="block";

    },

    offSet:function(){

        var message=confirm("你确定要重置所有设置么?");

        if(message==true){

            txt.removeAttribute('style');

        }

    }

  }


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

举报

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

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

进入课程

取消设置!!!!

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