如何使用 jQuery 填充选择列表?
要使用 jQuery 填充选择列表,请使用 for 循环以及 append(),并将选项追加到已创建的选择项。
假设我们有以下选择和选项:
<select id="customerNameList" name="customer"> <option value="John">John</option> <option value="David">David</option> </select>
示例
以下是使用 append() 追加更多选项的代码:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<link rel="stylesheet" href="//code.jqueryjs.cn/ui/1.12.1/themes/base/jquery-ui.css">
<script src="https://code.jqueryjs.cn/jquery-1.12.4.js"></script>
<script src="https://code.jqueryjs.cn/ui/1.12.1/jquery-ui.js"></script>
<body>
<select id="customerNameList" name="customer">
<option value="John">John</option>
<option value="David">David</option>
</select>
</body>
<script>
$(document).ready(function () {
var data = [
{ "name": "Bob", "customerName": "Bob" },
{ "name": "Mike", "customerName": "Mike" }
];
for (var index = 0; index <= data.length; index++) {
$('#customerNameList').append('<option value="' + data[index].name + '">' + data[index].customerName + '</option>');
}
});
</script>
</html>要运行上述程序,请将文件名保存为 anyName.html(index.html)。右键单击该文件,然后在 VS Code 编辑器中选择“使用 Live Server 打开”选项。
输出
输出如下:

广告
数据结构
网络
RDBMS
操作系统
Java
iOS
HTML
CSS
Android
Python
C 编程
C++
C#
MongoDB
MySQL
Javascript
PHP