我尝试使用jQuery网站中的默认代码:
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>selected demo</title>
<style>
div {
color: red;
}
</style>
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
</head>
<body>
<select name="garden" multiple="multiple">
<option>Flowers</option>
<option selected="selected">Shrubs</option>
<option>Trees</option>
<option selected="selected">Bushes</option>
<option>Grass</option>
<option>Dirt</option>
</select>
<div></div>
<script>
$("select").change(function() {
var str = "";
$("select option:selected").each(function() {
str += $(this).text() + " ";
});
$("div").text(str);
}).trigger("change");
</script>
</body>
</html>
如何从您的选择中创建<li></li>
个对象?对不起,我对jquery代码比较新,但是无法弄明白,我相信这很简单。
答案 0 :(得分:3)
只需在您的select标签旁边添加<ul></ul>
(删除div标签)
并将您的代码更改为此
$("select").change(function() {
var str = "";
$("select option:selected").each(function() {
str += "<li>" + $(this).text() + "</li>";
});
$("ul").html(str);
}).trigger("change");