質問する
2224 次
2 に答える
5
于 2013-08-06T00:57:31.057 に答える
0
function select( id ) {
var select = $( '#owner_select' ),
option = select.find( 'option' );
option.each( function( index ) {
if( $( this ).val() == id ) {
$( this ).attr( 'selected', 'selected' );
}
});
select = null,
option = null;
}
于 2013-08-06T01:57:39.747 に答える