jQuery Mobile SimpleDialog有两个输入?

时间:2012-04-23 05:37:55

标签: jquery-plugins jquery-mobile

我在移动网站上使用jQuery Mobile SimpleDialog(http://dev.jtsage.com/jQM-SimpleDialog/),我不太明白如何使用多个输入来实现它。

目前我有这个:

<script type="text/javascript">
        $(function() {
            // $('#createlocation').remove();
        });
        $(document).delegate('#searchdialog', 'click', function() {
          $('<div>').simpledialog2({
            mode: 'button',
            headerText: 'Route Search',
            headerClose: true,
            buttonPrompt: 'Enter your search:',
            buttonInput: true,
            buttons : {
              'OK': {
                click: function () { 
                  alert($.mobile.sdLastInput);
                }
              },
            }
          })
        });
    </script>

只需通过点击按钮调用,如下所示:

<a href="#page1" id="searchdialog" data-theme="" data-icon="search">
                            Search Routes
                        </a>

所以我不是只有一个输入,我怎么能有两个呢?

此致

1 个答案:

答案 0 :(得分:1)

而不是模式:'按钮'使用mode:'blank'

然后你可以把你想要的任何内容放入 blankcontent - 尽可能多的输入。