这就是我要做的事。
如您所见,有两种选择sel1
和sel2
sel1
有两个选项值。 sel2
没有选项值。
我想要做的是......当我点击按钮时,添加sel1
中选择的值将添加到sel2
选项中。我怎么能在jQuery中做到这一点?我不知道该怎么做。感谢
<!DOCTYPE html>
<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
</head>
<body>
<select id="sel1">
<option>Option 1</option>
<option>Option 2</option>
</select>
<input id="clickBtn" type="button" value="Add">
<select id="sel2"></select>
</body>
</html>
答案 0 :(得分:2)
试试这个:
$("#clickBtn").click(function(){
$("#sel2").append($("#sel1 option:selected").clone())
.val($("#sel1").val());
})
答案 1 :(得分:1)