【jQuery】初始化的三种方法

时间:2024-07-23 15:04:44

JQ初始化方法实际上有两种,由于美元符号可以定义 jQuery,那么就有三种方法可以进行初始化操作,根据个人习惯来选择吧!

  • 第一种
$(document).ready(function(){
// jQuery methods go here...
});
  • 第二种
$(function(){
// jQuery methods go here...
});
  • 第三种
jQuery(function($) {
//jQuery methods go here ...
});

如果$美元符号和其它组件有冲突,可以用var j = jQuery.noConflict();  其进行定义。