JS实现左右选中移动
一、步骤分析
1、使用标签进行页面设置
2、增加移动按钮
3、通过获取Id方法获取指定标签内容
4、使用document.getElementById("right").appendChild(xxx); 增加一个子标签
二、代码练习
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>左右选中</title>
</head>
<body>
<select id="in9" multiple="true" style="height: 300px;width: 200px;">
<option>其</option>
<option>实</option>
<option>我</option>
<option>很</option>
<option>爱</option>
<option>你</option>
</select>
<input type="button" id="in8" value=">"/>
<select id="right" multiple="true" style="height: 300px;width: 200px;">