jquery开头

jQuery(function(){});
jQuery().ready(function(){}); 绑定点击事件: jQuery('#temp').click(function() {});
$(document).ready(function(){
  $("p").click(function(){
  $(this).hide();
  });
});
原文地址:https://www.cnblogs.com/yangzailu/p/6290505.html