JavaScript若干实用模式

收集了点JavaScript若干有意思的模式,在实际中很有用处:

var ps = function(){

alert("one");

ps = function()

{

  alert("two");

}

}

 

({
            abc:function() {
                alert("haha");
            }
        }.abc());

 

({
            abc:function() {
                alert("haha");
            }
        }).abc();

 

posted @ 2013-07-04 08:52  Shapley  阅读(104)  评论(0编辑  收藏  举报