js面向对象与常用


1:

 cq = function()
    {
    this.init = function()
    {
    this.event();
    }
   
    this.create = function()
    {
    $('#child').html("<Ul><LI id='f'>a</LI> <LI id ='th'>b</LI> <LI id = 't'>c</LI></Ul>");
    }
   
    this.event = function()
    {
    var t = this; 
    $('#cq').bind('click', function() {
    t.create()//要调用本对象方法要在上边记录下this
});
    }
    }


2:

  var zxprice = {};
    zxprice.qyportChoise = function (_qyporten)
    {
        
    }

你可能感兴趣的:(js面向对象与常用)