Java脚本:
<!DOCTYPE html>
<html>
<head>
<style>
.format_chkbox{
height: 30px;
width: 30px;
}
</style>
</head>
<body>
<form action="">
<input class="format_chkbox" type="checkbox" name="vehicle" value="Bike">I have a bike<br>
<input type="checkbox" name="vehicle" value="Car">I have a car
</form>
</body>
</html>
JSP:
var numArray = {"01":"Monday","03":"Wednesday","05":"Friday"};
$.each(numArray , function(key,value){
$("#weekDay").append($("<option></option>")
.attr("value",key)
.text(value));
});
值正在填充,但我无法选择。它只选择星期一而不是其他值。我做错了什么
答案 0 :(得分:0)
您正在将option
添加到具有其他ID的select中。
更改您的代码如下。
$.each(numArray , function(key,value){
// $("#weekDay").append($("<option></option>") - wrong
$("#recurringType").append($("<option></option>")
.attr("value",key)
.text(value));
});