我构建了一个小函数,它向 div 添加下拉值,但我的要求是,每当在 div 中添加名称时,它都应该进入新行并且它应该按升序排列,我尝试了它,但我没有达到解决方案.
<head>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript">
$(function(){
var str = "";
$('#me').change(function(){
str += $(this + "option:selected").text()
$('#text').text(str)
})
});
</script>
<style>
.main {
margin:0 auto;
width:500px;
border:solid 1px #F00;
height:500px
}
#text{ margin-left:50px; margin-top:50px; font:24px/18px Tahoma, Geneva, sans-serif; color:#F00}
</style>
</head>
<body>
<div class="main">
<select id="me">
<option>first</option>
<option>second</option>
<option>third</option>
<option>fourth</option>
</select>
<div id="text"></div>
</div>
</body>