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

取消设置的按钮,点击一下就消失了,怎么办?

function remove()    //取消设置的按钮,点击一下就消失了,怎么办????????? {    var mymessage=confirm("是否将文章恢复原样?");    if(mymessage==true)    {       obj.removeAttribute("style");       obj2.removeAttribute("style");    } else{} }

提问者:yxrswx 2015-11-05 00:10

个回答

  • yxrswx
    2015-11-05 07:59:33

    function remove()   

    {

        var mymessage=confirm("是否将文章恢复原样?");

        if(mymessage==true)

        {

            obj.removeAttribute("style");

           obj2.removeAttribute("style");

        }

    else{}

    }