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]);