码迷,mamicode.com
首页 > Web开发 > 详细

jquery函数写法

时间:2014-09-25 15:42:19      阅读:268      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   io   java   ar   div   sp   

普通jquery函数写法

<script src="http://code.jquery.com/jquery-1.11.1.min.js"></script>
<script type="text/javascript">
$(function(){
    var myfunc = {
        aaa: 0,
        init:function(aaa) {
            this.aaa=aaa;
        },
        log:function(msg) {
            if(  (EpBrowser.core=="chrome")  ){//chrome
                console.log("log>>    "+msg);
            }
        }
    };
    myfunc.init("ddddddddd");
    alert(myfunc.aaa);
});
</script>

 

(不确定的参数,初始化及传参)有亮点!!

<script src="http://code.jquery.com/jquery-1.11.1.min.js"></script>
<script type="text/javascript">
$(function(){
    var Person={
        init : function(option){
            if(typeof option == "undefined"){
                option = {};
            }
            this.aaa = option.aaa || "啊啊啊";
            this.bbb = option.bbb || 25;
            this.ccc = option.ccc || 75;
            this.ddd = (typeof option.ddd != "undefined") ? option.ddd : true;
        },
        showInfo : function(){
            return this.aaa + " " + this.bbb + " " + this.ccc + " " + this.ddd;
        }
    }
    Person.init({
        ccc : 80,
        ddd : "Hank"
    })
    alert(Person.showInfo()); //啊啊啊 25 80 Hank
});
</script>

 

jquery函数写法

标签:style   blog   http   color   io   java   ar   div   sp   

原文地址:http://www.cnblogs.com/qq21270/p/3992430.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!