Jquery核心函数写法

Jquery核心函数写法

自定义"$":

jQuery( function (ss){
  ss(
" #content " ).click( function (){
    alert('asdf'); 
  });
})


不太合适的自定义"$":

$( function ($){
  
//  code goes here
});

 
原始写法:

$(document).ready( function (){
  
//  code goes here
});


简单一点:

$().ready( function (){
  
// code goes here
})


再简单一点:

$( function (){
  
//  code goes here
})
posted on 2009-01-04 10:26 中南海老农 阅读(277) 评论(0)   编辑   收藏 所属分类: ajax

你可能感兴趣的:(Jquery核心函数写法)