问答详情
源自:4-1 编程挑战

”取消设置“除了用removeAttribute设置外,你们是用什么方式设置的呢?

用removeAttribute设置:

function qu(){

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

    var qu=confirm("确认取消设置?");

    if (qu==true){

    h.removeAttribute("style");

    document.getElementById("txt").removeAttribute("style");

    }

}

提问者:qq_寶貝_1 2018-05-30 18:29

个回答

  • 猫儿当自强
    2018-06-15 10:59:08

    document.getElementById("txt").style="txt"

    txt为代码上面设置好的样式。

  • 墨色染流年
    2018-06-02 22:33:27

    var selectH2=document.getElementById("con");
    var selectDiv=document.getElementById("txt");

    function rmChanges(){
            var confirmRM=confirm("是否要取消设置?");
            if(confirmRM==true){
                selectH2.style="";
                selectDiv.style="";
            }
        }

  • qq_万家灯火谁来点灯_0
    2018-06-01 16:02:22

    个人想法(可实现)代码见最后一节的问题中有。

    设置一个变量值为0,在函数中将变量值改为一,这样当函数执行后,变量的可以表示,设置的状态。

    再用if进行判断变量值为0不进行任何操作,为1执行原状态的设置语句。


  • 精慕门3401794
    2018-05-31 17:11:41

    在这个上面好像不行,我是把课件的代码复制到sublime里面的,然后用 window.open    重新打开了一遍本网页,就等于刷新了下,所以所有的操作都还原了。