在jquery中已类的写法比如:
var buyerorderobj = {
ajax_cmd : "",
ajax_url : "member/seller/ajax",
init : function() {
this.list_panel = jQuery(".order_list_panel");
this.object_name = "buyerorderobj";
this.page_bind_click();
this.form = jQuery('.order-list .searchpanel form');
this.search_panel = jQuery('.samplesdiv .order-list .searchpanel');
this.fail_cancel_panenl = jQuery('.fail_box');
},
form_config : function(url){
this.form.attr('action',url);
}
}
这样写的时候要注意,最后一个方法要有逗号的话在IE7会不兼容;
这种类的写法在里面定义方法然后来调用!比如:test : function(){
}
如果你写个 function demo(){
}
这样写的话在IE写会不兼容,报错,所以在类里面写法只能 方法名 : function(){
}
这种写法。
Comments | NOTHING