如何将 jquery 多选下拉列表的选定值放入隐藏元素的 id 中?我需要该 id 是一个数组,以便我可以将多选的选定值放入其中。
我尝试的是:
$( "#Myselect" ).change(function(){
var str = "";
$( "select option:selected" ).each(function() {
str += $( this ).val() + " ";
});
document.getElementById("objecttype").value = str;
}).trigger( "change" );
<html:hidden styleId="objecttype" property="objecttype" name="Myobjecttype"/>
但 objecttype 只是一个 id 而不是数组!