0

モバイル サイトで 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 つだけではなく、2 つにするにはどうすればよいでしょうか?

よろしく

4

1 に答える 1

1

mode:'button' の代わりにmode :'blank'を使用

次に、好きなものを何も入力せずに、空白のコンテンツに入れることができます

于 2012-04-23T06:42:58.547 に答える