forms提交无效,为什么

类似这样的
《div>
《input type=“button” onclick="document.resp.submit()"》

《form action="xxxxxxx" id="resp"》
一些提交的信息
<form》
我在form表单中使用 submit可以提交,我想写在外面为什么提交不上啊,求大神指点

将
 《input type=“button” onclick="document.resp.submit()"》
 变成
 《input type=“submit” onclick="document.resp.submit()"》
试试

form表单提交的是表单里面的数据,当然不能提交外面的啊

可以用js事件提交。。。。

这样调下位置应该就可以了
《div>

《form action="xxxxxxx" id="resp"》
《input type=“button” onclick="document.resp.submit()"》
一些提交的信息
<form》

你把提交按钮写在外面,而且你的type类型还是button,你可以在js里把button的类型改成submit,或者直接用HTML5

在form标签上 添加个id 当点击外部 按钮触发 提交form表单事件就可以了

你onclick那里触发个js,在js里使用#id.submit()提交不就可以了