jQuery MiniUI

标题: 返回JSON 如何绑定MINI COMBOBOX [打印本页]

作者: seal19871223    时间: 2012-7-24 11:55:26     标题: 返回JSON 如何绑定MINI COMBOBOX

  <script type="text/javascript">
          $(document).ready(function() {
              $.ajax({
                  type: "post",
                  url: "GetDataHandler.ashx",
                  async: false,
                  cache: false,
                  datatype: "json",
                  success: function(data) {
                  $.getJSON("GetDataHandler.ashx", { param: "D_Zh" }, function(data) {
                  $('#combo1').load(data);
                          $.each(data, function(Key, item) {
                              alert(item.D_Zh);
                          });
                      });
                  }
              });
            
          });
      </script>
<input id="combo1" class="mini-combobox" style="width:150px;" textField="text" valueField=""
    value="" showNullItem="true" required="true" allowInput="true"/>

作者: seal19871223    时间: 2012-7-24 11:59:44

我知道有种办法是遍历网页元素 然后再将这些数据拼进去 想问有没有提供一些方法可以直接绑定的
作者: niko    时间: 2012-7-24 12:18:33

你的做法太复杂了。。。
<input class="mini-combobox" url="getData.aspx" ...
就可以了。

示例:http://www.miniui.com/demo/#src=combobox/combobox.html






欢迎光临 jQuery MiniUI (http://miniui.com/discuss/) Powered by Discuz! X2