我有一个页面通过它添加优惠我添加了 asmSelect 以添加此优惠的客户。还行吧
但另一方面,我需要编辑此优惠,因此在编辑页面和 asmListItem 中,我需要将已选择的客户保存在数据库中以获取此优惠。
我如何将值(取自查询结果或隐藏字段)添加到 asmListItem li 这个代码:$(document).ready(function() {
$("#customers").asmSelect({
addItemTarget: 'bottom',
animate: true,
highlight: true,
sortable: true
}).after($("<a href='#'>Select All</a>").click(function() {
$("#customers").children().attr("selected", "selected").end().change();
return false;
}));
});
我需要在 .asmListItem 中用隐藏字段中的值填充 li