87,997
社区成员




<script type="text/javascript">
window.onload = function() {
$("<option value='1'>1</option>").appendTo($("#sel1"));
$("<option value='2'>2</option>").appendTo($("#sel1"));
$("<option value='3'>3</option>").appendTo($("#sel1"));
setTimeout(function() { $("#sel1").val("3") }, 0);
}
</script>
<select id="sel1" style="width: 50px;">
</select>
$("#sel1 option[value='8']").attr("selected","selected");