在使用 <c:forEach items="${womenTeamList}" var="list"></c:forEach>标签中的下拉框如何赋值 如:
在使用jquery赋值时为什么无效果?
应该是
$("#team").attr("value",6); 或者 $("#team").val(6);
$("#team").attr("value",6);
$("#team").val(6);
have a try.
谢谢,在使用${“#team”}.val(6);是可以的,
val()赋值时参数只有一个,且参数为字符串; $("#team").val("6");