jquery操作selectドロップダウンリストボックスのコード
1314 ワード
例:
// option
$('#sltList').val()
//
$('#sltList option[@selected]').text(); // option, text , val option
var item = $("select[@name= list] option[@selected]").text();
//
$("#sltList option[@selected]").attr("text",' ');
// select
$('#sltList')[0].selectedIndex = 1;
// value=1
$("#sltList").attr("value",'1');
$('#sltList').val('1');
// option
$("").appendTo("#sltList")
//
$("sltList").empty();
:
//
$("#testSelect").change(function(){ // �l
jQuery('option:selected', this).each(function(){ // �x ��
alert(this.value);
});
});
$("#childTypeResult").append(htmlStr); // ID htmlStr .
$("#childTypeResult").html(htmlStr); ID htmlStr .