如何在没有表单的情况下发布输入?

时间:2015-01-28 10:54:18

标签: html twitter-bootstrap

所以,我使用Bootstrap作为我的框架,如果我把它放在<form>标签中,我不喜欢我的专栏会发生什么。那么,我可以将我的输入发布到没有表单的php文件吗?

HTML

<form role="form-horizontal" id="usr_reg_in" name="usr_reg_in" action="php/usr_time_reg.php" method="post">
    <input type="text" class="form-control" id="reg_in" name="reg_in" placeholder="Var god ange anst. nummer">
        <span class="input-group-btn">
            <button class="btn btn-info" type="submit">In</button>
        </span>
</form>

1 个答案:

答案 0 :(得分:1)

简短的回答是肯定的。例如,您可以使用jQuery's Post方法。

form标签出于某种原因,应该相应地使用它们。删除表单不应该是布局问题。

在SO中询问有关破坏您的布局的表单的问题。我确信修复它很简单。