取消设置!!!!

来源:4-1 编程挑战

请叫我川子哥

2018-03-09 16:04

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

写回答 关注

2回答

  • muke_Lyn
    2018-03-31 19:23:18

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

  • 慕盖茨8345433
    2018-03-09 16:46:51

    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');

            }

        }

      }


JavaScript入门篇

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

740083 学习 · 9566 问题

查看课程

相似问题

取消设置?

回答 4

取 消设置

回答 1

取消设置?

回答 1

取消设置。

回答 1