jqueryを使用して、リストボックスで選択したすべての値を取得しています。私のリストボックスでは、複数選択プロパティも実行しました。リストボックスで選択したすべての値を隠しフィールドに取得できません。jqueryを使用してhiddenfieldのすべての値を取得するには? 助けてください。コードを以下に示します。
$("#button1").click(function () {
$("#ctl00_BodyContentPlaceHolder_ListBox1 > option:selected").each(function(){
//var selectedText = $('#ctl00_BodyContentPlaceHolder_ListBox1 option:selected').text();
//alert(selectedText);
$(this).remove().appendTo("#ctl00_BodyContentPlaceHolder_ListBox2");
var itemArray = [];
var arr = new Array();
$('#ctl00_BodyContentPlaceHolder_ListBox2 :selected').each(function(i, selected){
itemArray[i] = $(selected).text();
$('#ctl00_BodyContentPlaceHolder_hdnListItems').val(itemArray[i]);
alert(itemArray[i]);
});
});
});