向
jQuery 提供了各种方法来轻松地向下拉列表添加选项。
将 .append() 与 HTML 字符串结合使用:
虽然您提供的代码确实可以添加选项,但它需要转义 HTML 字符。要简化此过程:
$("#mySelect").append('<option value="1">My option</option>');
将 .append() 与 jQuery 对象一起使用:
为了更好的控制和可读性,您可以创建 jQuery 对象来定义选项:
$('#mySelect').append($('<option>', { value: 1, text: 'My option' }));
数据批量添加集合:
如果您有要作为选项附加的项目集合:
$.each(items, function (i, item) { $('#mySelect').append($('<option>', { value: item.value, text : item.text })); });
以上是如何使用 jQuery 将选项添加到 `` 元素?的详细内容。更多信息请关注PHP中文网其他相关文章!