jQuery $ 第二个参数的用法

jQuery(selector, [context]),相当于 $(context).find(selector) 或者 context.find(selector)

$('div').each(function(){
  $('span', this).html('hi');
  // this == $('div'),相当于 $(this).find('span').html('hi');
});

也适用于多表单下的简洁写法

$("input:radio", document.forms[0]);
上一篇:python网络编程【二】(使用UDP)


下一篇:Emit学习笔记