0

我有一个页面通过它添加优惠我添加了 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

4

1 回答 1

0

不确定这是您问的问题。如果对您的问题(以及您使用的标签)不准确,并显示一些代码。

$('.asmListItem li').data( $('#yourhiddenfield).val() );
于 2012-02-23T14:23:29.747 回答