$("#rightuser option").each(function() {
userids += $(this).val()+',';
usernames += $(this).text()+',';
var userids = "";var usernames="";$("#rightuser option").each(function() { userids += $(this).val()+','; usernames += $(thi
<#form:
select
path="yourId" items="${resultList}"
itemLabel="beanName" item
Val
ue="id"
multiple
="true" class="form-control required" blankOption="true" />
var
select
Val
ue="";
$("#yourId")...
语法解释:
1. $("#
select
_id").change(
function
(){//code...}); //为
Select
添加事件,当选择其中一项时触发
2. var check
Text
=$("#
select
_id").find("option:
select
ed").
text
(); //
获取
Select
选择的
Text
3. var check
Val
ue=$("#
select
_i
select
标签通过设置
multiple
属性和size属性,就可以实现
多选
,且从下拉框变成了列表框。然而 用form提交时只能得到最后一个被选中的,然后我就临时记录了这点代码,可能对我或者他人有点作用上代码
text
.html:<form action="post.php" method="post">
选择年份<br>
<
select
id="years" na...
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title> New Document </title>
</head>
<body>