* SELECTタグ [#f40dd82b]
** 値を取得 [#af3ecdaa]
var value = $('#select1').val();
// または
var value = $('#select1 option:selected').val();
** 値を設定 [#nf5c0553]
$('#select1').val('ABC');
** 選択されたOPTIONタグを取得 [#p0508de4]
var option = $('#select1 otpion:selected');
** 全てのOPTIONタグを取得 [#f4ded554]
var opts = [];
$('#select1 option').each(function(){
opts.push($(this));
});
** selectedIndexを取得する [#ae34fe81]
** selectedIndexを取得(設定)する [#ae34fe81]
var num = $('#select1').prop('selectedIndex');
$('#select1').prop('selectedIndex', 0);
attr()よりもprop()を使った方が良い。
*** 参考 [#pbe02cd6]
http://www.jquerystudy.info/reference/attributes/prop.html