模态显示html的内容而不是其自己的内容

时间:2016-09-30 06:09:11

标签: php html ajax bootstrap-modal

当我提交输入而不是php的结果时,我不明白为什么模态显示我的html的正文内容。

我试过调试它,然后我发现当我将数据切换和数据目标添加到输入/表单时,模态显示自己的内容,但问题是我点击输入后模态显示在我甚至可以输入内容之前,即使我设法输入内容,同样的问题仍然存在

以下是表格:

<form id="form_id" action="some_php.php" method="POST">
    <input id="input_id" type="text" name="input_name">
</form>

这是脚本:

$(document).ready(function()
{
    $("#form_id").submit(function(e)
    {
        e.preventDefault();
        $.ajax({
            type: 'POST',
            data: $("form_id").serialize(),
            url: 'some_php.php',
            success: function(data) {
                $("#fetched-data").html(data);
                $("#myModal").show('show');
            }
        });
        return false;
    });
});

0 个答案:

没有答案