- 在线时间
- 0 小时
- 专家
- 0
- UID
- 413672
- 注册时间
- 2007-12-3
- 帖子
- 2
- 精华
- 0
- 积分
- 16
- 离线
- 83 天
- 帖子
- 2
- 体力
- 16
- 威望
- 0
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<script type="text/javascript" src="http://images.xdf.cn/v3/js/jquery.js"></script>
<script>
$(document).ready(function() {
var option = "";
$.each([{ test: "A", value: "1" }, { test: "B", value: "2"}], function(i) {
option += "<option value='" + this.value + "'>" + this.test + "</option>";
});
$("#sel").html("");
$("#sel").append(option);
$("#sel").val("2");
});
</script>
</head>
<body>
<select id="sel">
</select>
</body>
</html>
ie6下如何正常运行?
火狐,ie7,8 都没问题.就ie6报无法设置selected属性.无效索引的错误。 |
|