2

我无法弄清楚为什么这不起作用...我将此模式放在我的内容末尾并尝试将表单放入其中...但是:它工作正常,直到我添加我的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&szlig;en</button>
    <button class="btn btn-info">Submit</button></form>
    </div>

    </div>
4

1 回答 1

5

您缺少 iframe 结束标记...

</iframe>
于 2013-05-23T11:41:21.180 回答