2

在 firebug 中看到时没有发送到 /example 的请求。并且 select2 未激活。

HTML

<select id="e1"  style="width: 300px" >
</select>

Java 脚本

$("#e1").select2(
         {   placeholder: "Select a State",
                blurOnChange: true,
                openOnEnter: false,
               ajax: {
                    url: "/example",
                    dataType: 'json',
                    data: function (term, page) {
                        return {
                            method: "GetClientsByName",
                            name: term
                        };
                        }
               },
              results: function (data, page) {
                    return { results: data };
                }

         }
    ); 
4

0 回答 0