带有多选的下拉框,获取选中的text文本值,(multiple="true")

<#form:select path="yourId" items="${resultList}"
		itemLabel="beanName" itemValue="id" multiple="true"  class="form-control required" blankOption="true" />
var selectValue="";
		$("#yourId").find("option:selected").each(function () {
			selectValue += $(this).text() + ","
		});

 

你可能感兴趣的:(java,js)