首页 > 代码库 > select 左右多选实现
select 左右多选实现
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title></title>
<script type="text/javascript">
function $(e){return document.getElementById(e);}
function PutRightOneClk(str) {
if($(str+"0").options.selectedIndex == -1){return false;}
while($(str+"0").options.selectedIndex > -1){
var id = $(str+"0").options.selectedIndex
var varitem = new Option($(str+"0").options[id].text,$(str+"0").options[id].value);
$(str+"1").options.add(varitem);
$(str+"0").options.remove(id);
}
}
function PutRightAllClk(str) {
if($(str+"0").options.length == 0){return false;}
for(var i=0;i<$(str+"0").options.length;i++){
var varitem = new Option($(str+"0").options[i].text,$(str+"0").options[i].value);
$(str+"1").options.add(varitem);
}
$(str+"0").options.length = 0;
}
function PutLeftOneClk(str) {
if($(str+"1").options.selectedIndex == -1){return false;}
while($(str+"1").options.selectedIndex > -1){
var id = $(str+"1").options.selectedIndex
var varitem = new Option($(str+"1").options[id].text,$(str+"1").options[id].value);
$(str+"0").options.add(varitem);
$(str+"1").options.remove(id);
}
}
function PutLeftAllClk(str){
if($(str+"1").options.length == 0){return false;}
for(var i=0;i<$(str+"1").options.length;i++){
var varitem = new Option($(str+"1").options[i].text,$(str+"1").options[i].value);
$(str+"0").options.add(varitem);
}
$(str+"1").options.length = 0;
}
</script>
</head>
<body>
<table>
<tr>
<td width="20%" class="biaoti-2" align="right">标签:</td>
<td class="formword" colspan="3" width="80%">
<div style="float:left;">
<select size="5" id="ptNbrs0" class="input" style="width:200px;height:200px;" multiple="multiple" ondblclick="PutRightOneClk(‘ptNbrs‘)">
<option value=http://www.mamicode.com/"0" >qqqq
<option value=http://www.mamicode.com/"1" >wwww
<option value=http://www.mamicode.com/"2" >eeee
</select>
</div>
<div style="float:left">
<input type="button" value=http://www.mamicode.com/" > " id="PutRightOne" class="button1" onclick="PutRightOneClk(‘ptNbrs‘)" />
<input type="button" value=http://www.mamicode.com/">>" id="PutRightAll" class="button1" onclick="PutRightAllClk(‘ptNbrs‘)" />
<input type="button" value=http://www.mamicode.com/" < " id="PutLeftOne" class="button1" onclick="PutLeftOneClk(‘ptNbrs‘)" />
<input type="button" value=http://www.mamicode.com/"<<" id="PutLeftAll" class="button1" onclick="PutLeftAllClk(‘ptNbrs‘)" />
</div>
<div>
<select size="5" id="ptNbrs1" name="ptNbrs1" class="input" style="width:200px;height:200px;" multiple="multiple" ondblclick="PutLeftOneClk(‘ptNbrs‘)">
</select>
</div>
</td>
</tr>
</table>
</body>
</html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title></title>
<script type="text/javascript">
function $(e){return document.getElementById(e);}
function PutRightOneClk(str) {
if($(str+"0").options.selectedIndex == -1){return false;}
while($(str+"0").options.selectedIndex > -1){
var id = $(str+"0").options.selectedIndex
var varitem = new Option($(str+"0").options[id].text,$(str+"0").options[id].value);
$(str+"1").options.add(varitem);
$(str+"0").options.remove(id);
}
}
function PutRightAllClk(str) {
if($(str+"0").options.length == 0){return false;}
for(var i=0;i<$(str+"0").options.length;i++){
var varitem = new Option($(str+"0").options[i].text,$(str+"0").options[i].value);
$(str+"1").options.add(varitem);
}
$(str+"0").options.length = 0;
}
function PutLeftOneClk(str) {
if($(str+"1").options.selectedIndex == -1){return false;}
while($(str+"1").options.selectedIndex > -1){
var id = $(str+"1").options.selectedIndex
var varitem = new Option($(str+"1").options[id].text,$(str+"1").options[id].value);
$(str+"0").options.add(varitem);
$(str+"1").options.remove(id);
}
}
function PutLeftAllClk(str){
if($(str+"1").options.length == 0){return false;}
for(var i=0;i<$(str+"1").options.length;i++){
var varitem = new Option($(str+"1").options[i].text,$(str+"1").options[i].value);
$(str+"0").options.add(varitem);
}
$(str+"1").options.length = 0;
}
</script>
</head>
<body>
<table>
<tr>
<td width="20%" class="biaoti-2" align="right">标签:</td>
<td class="formword" colspan="3" width="80%">
<div style="float:left;">
<select size="5" id="ptNbrs0" class="input" style="width:200px;height:200px;" multiple="multiple" ondblclick="PutRightOneClk(‘ptNbrs‘)">
<option value=http://www.mamicode.com/"0" >qqqq
<option value=http://www.mamicode.com/"1" >wwww
<option value=http://www.mamicode.com/"2" >eeee
</select>
</div>
<div style="float:left">
<input type="button" value=http://www.mamicode.com/" > " id="PutRightOne" class="button1" onclick="PutRightOneClk(‘ptNbrs‘)" />
<input type="button" value=http://www.mamicode.com/">>" id="PutRightAll" class="button1" onclick="PutRightAllClk(‘ptNbrs‘)" />
<input type="button" value=http://www.mamicode.com/" < " id="PutLeftOne" class="button1" onclick="PutLeftOneClk(‘ptNbrs‘)" />
<input type="button" value=http://www.mamicode.com/"<<" id="PutLeftAll" class="button1" onclick="PutLeftAllClk(‘ptNbrs‘)" />
</div>
<div>
<select size="5" id="ptNbrs1" name="ptNbrs1" class="input" style="width:200px;height:200px;" multiple="multiple" ondblclick="PutLeftOneClk(‘ptNbrs‘)">
</select>
</div>
</td>
</tr>
</table>
</body>
</html>
select 左右多选实现
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。