yongqiling 2015-04-09
// 不要这样做!
if ( $( "div.foo" ) ) {
}
// 请使用length属性
if ( $( "div.foo" ).length ) {
}
var divs = $( "div" );
$( "#foo" )[ 0 ];
$( "#myselect" ).val();
$( "#myselect option:selected" ).text();
$( "#x" ).prop( "checked", true );
$( "#x" ).prop( "checked", false );
$( "#x" ).prop( "disabled", true );
$( "#x" ).prop( "disabled", false );