select2 with ajax甚至不发送请求

时间:2013-05-09 09:47:56

标签: jquery jquery-select2

在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 };
                }

         }
    ); 

0 个答案:

没有答案