これが機能しない理由がわかりません...このモーダルをコンテンツの最後に配置し、フォームを挿入しようとしました...ただし、追加するまではすべて正常に機能しますiframe
(これは私のフォーム ターゲット)。
追加:私はまた、これより下には何も表示されないことを知りました(フッター)...そのモーダルとフォームのない別のサイトでは、すべて正常に機能します...
<div id="myModal" class="modal hide fade" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">X</button>
<h3 id="myModalLabel">MyForm</h3>
</div>
<div class="modal-body">
<iframe width="320" height="240" style="display: none;" name="submitter">
<form target="submitter" method="post" action="template/submit.php" style="height: 1px;">
<div id="formular">
Text n Stuff
<table>
<tr>
<td>Name:</td>
<td><input type="text" name="name" /></td>
</tr>
</table>
<div id="error">
</div>
</div>
</div>
<div class="modal-footer">
<button class="btn" data-dismiss="modal" aria-hidden="true">Schließen</button>
<button class="btn btn-info">Submit</button></form>
</div>
</div>