web-dev-qa-db-ja.com

Twitter Bootstrap= 2つのモーダルフォームダイアログ

次のダイアログフォームがあります。

<div class='modal' id='myModal'>
  <div class='modal-header'>
    <a class='close' data-dismiss='modal'>×</a>
    <h3>Add Tags</h3>
  </div>

  <div class='modal-body'>
    <form accept-charset="UTF-8" action="/tagging" data-remote="true" method="post"><div style="margin:0;padding:0;display:inline"><input name="utf8" type="hidden" value="&#x2713;" /><input name="authenticity_token" type="hidden" value="mCNvbvoPFWhD7SoJm9FPDh+BcRvCG3d16P+oOFACPuc=" /></div>
        <input id="tags_string" name="tags_string" type="text" value="luca" />
        <input id="id" name="id" type="hidden" value="4f1c95fd1d41c80ff200067f" />
    </form>
  </div>

  <div class='modal-footer'>
    <div class='btn btn-primary'><input name="commit" type="submit" value="Add tag" /></div>
  </div>
</div>

そして彼のJS:

<script>
  //<![CDATA[
    $(function() {
      // wire up the buttons to dismiss the modal when shown
      $("#myModal").bind("show", function() {
        $("#myModal a.btn").click(function(e) {
          // do something based on which button was clicked
          // we just log the contents of the link element for demo purposes
          console.log("button pressed: "+$(this).html());
          // hide the dialog box
          $("#myModal").modal('hide');
        });
      });
      // remove the event listeners when the dialog is hidden
      $("#myModal").bind("hide", function() {
          // remove event listeners on the buttons
          $("#myModal a.btn").unbind();
      });
      // finally, wire up the actual modal functionality and show the dialog
      $("#myModal").modal({
        "backdrop" : "static",
        "keyboard" : true,
        "show" : true // this parameter ensures the modal is shown immediately
      });
    });
  //]]>
</script>

Xをクリックすると、<a class='close' data-dismiss='modal'>×</a>、フォームを閉じて現在のページに移動しますが、ハメページに移動したいです。

また、「タグを追加」ボタン(<div class='btn btn-primary'><input name="commit" type="submit" value="Add tag" /></div>何もしないでください。キーボードのジャストENTERをクリックするとジョブが実行されますが、[タグの追加]をクリックしても同じようになります。

私はJSとフロントエンドプログラムについてあまり熟練していないので、どんな助けも歓迎します。

20
BBJ3

送信ボタンはフォームタグの外側にあります。
送信するフォームがわかりません。

JavaScriptを使用してフォームに接続します。

<div class='modal-body'>
    <form id="modal-form" accept-charset="UTF-8" action="/tagging" data-remote="true" method="post">
        <input name="something" value="Some value" />
    </form>
  </div>

<div class='modal-footer'>
    <a id="modal-form-submit" class='btn btn-primary' href="#">Submit</a>
</div>

<script>
  $('#modal-form-submit').on('click', function(e){
    // We don't want this to act as a link so cancel the link action
    e.preventDefault();

    // Find form and submit it
    $('#modal-form').submit();
  });
</script>

ホームページにリンクすることになっている<a class='close' data-dismiss='modal'>×</a>については、単にdata-dismiss='modal'を削除して、標準のhref='home.html'を使用して通常のリンクのように振る舞わせてください。

AJAXを使用してフォームを送信するための正しい方向を示す追加コードを次に示します。

// Since we want both pressing 'Enter' and clicking the button to work
// We'll subscribe to the submit event, which is triggered by both

$('#modal-form').on('submit', function(){

  //Serialize the form and post it to the server
  $.post("/yourReceivingPage", $(this).serialize(), function(){

    // When this executes, we know the form was submitted

    // To give some time for the animation, 
    // let's add a delay of 200 ms before the redirect
    var delay = 200;
    setTimeout(function(){
      window.location.href = 'successUrl.html';
    }, delay);

    // Hide the modal
    $("#my-modal").modal('hide');

  });

  // Stop the normal form submission
  return false;
});
33

送信ボタンを取得するには、フォーム内に配置します。

<div class="modal">
    <form id="modal-form" action="/tagging" data-remote="true" method="post">
        <div class="modal-header">
            <a class="close" data-dismiss="modal">×</a>
            <h3>A Modal Form</h3>
        </div>
        <div class="modal-body">
            <input name="something" value="Some value" />
        </div>
        <div class="modal-footer">
            <a href="#" class="btn" data-dismiss="modal">Cancel</a>
            <input type="submit" value="Save" class="btn btn-primary" />
        </div>
    </form>
</div>

ただし、これにより、モーダルの下部に予期しないマージンが追加されます。 Bootstrap 2.0.2ではmodal-form class これを修正するか、次のようなスタイル定義で自分で修正できます。

.modal > form {
    margin-bottom: 0;
}

モーダルを閉じるときに別のページにリンクするTheShellfishMemeと一緒に行きます

ホームページにリンクすることになっている×については、単にdata-dismiss = 'modal'を削除し、標準のhref = 'home.html'を使用して通常のリンクのように振る舞わせるだけではありません。

23
breigo

HTML5を使用すると、次のようなことができます。

<div class="modal" id="myModal">
  <div class="modal-header">
    <a class="close" data-dismiss="modal">×</a>
    <h3>Add Tags</h3>
  </div>

  <div class="modal-body">
    <form id="my_form" accept-charset="UTF-8" action="/tagging" data-remote="true" method="post">
        <div style="margin:0;padding:0;display:inline">
          <input name="utf8" type="hidden" value="&#x2713;" />
          <input name="authenticity_token" type="hidden" value="mCNvbvoPFWhD7SoJm9FPDh+BcRvCG3d16P+oOFACPuc=" />
        </div>
        <input id="tags_string" name="tags_string" type="text" value="luca" />
        <input id="id" name="id" type="hidden" value="4f1c95fd1d41c80ff200067f" />
    </form>
  </div>

  <div class="modal-footer">
    <div class="btn btn-primary"><input name="commit" type="submit" value="Add tag" form="my_form" /></div>
  </div>
</div>

これはHTML5で呼び出されます form-associated element もちろん、すべてのブラウザと古いブラウザをサポートする必要がある場合はJavaScriptを使用する必要がありますが、フォールバックとしてJavaScriptを使用できます:)

15
panosru

フォームを送信するための問題は、bootstrap自分のJSモーダルライブラリ(bootstrap-modal.js)内にあります-基本的に送信イベントは#204行目:ev.preventDefault (なぜ?)。

私の解決策は追加することでした:

if(!$(e.target).parents('form'))
   e.preventDefault();

ただし、どの問題が発生するかはわかりません。

2
eithed