取消设置?的相关代码是什么

来源:4-1 编程挑战

Strengthen_小易

2016-02-14 23:17

最后的取消设置的相关代码是什么?我怎么感觉课程里面没说到 的样子??

写回答 关注

1回答

  • 时间啊
    2016-02-15 00:16:24
    已采纳

    查看下面的同学代码啊!!!!!!!!

     function setReset() 
            { 
            var sr = document.getElementById("txt");
            var srs = confirm("确认取消设置?");
            if (srs==true)
            {
                sr.style.color = "black";
                sr.style.backgroundColor = "white";
                sr.style.width = orignWidth;
                sr.style.height = orignHeight;
                sr.style.display = "block";
            }
         }

    或者

     offSet:function(){
            var message=confirm("你确定要重置所有设置么?");
            if(message==true){
                txt.removeAttribute('style');
            }
        }

    Streng...

    非常感谢!

    2016-02-15 17:01:31

    共 1 条回复 >

JavaScript入门篇

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

739817 学习 · 9566 问题

查看课程

相似问题