Heim >Web-Frontend >HTML-Tutorial >form表单中要提交的input为type="button"时怎么提交啊?_html/css_WEB-ITnose

form表单中要提交的input为type="button"时怎么提交啊?_html/css_WEB-ITnose

WBOY
WBOYOriginal
2016-06-24 11:39:051201Durchsuche

form表单中input为type="button"怎么提交啊?

<form action="#" method="POST"><input type="button" value="这是提交的内容"><input type="submit" value="提交"></form>


回复讨论(解决方案)

对了还有就是

<form action="#" method="POST"><input type="submit" value="提交"></form>
怎么提交这里面的input本身的值:“提交”?

加上name属性


<form action="#" method="POST" id="inputForm"><input type="button" value="这是提交的内容"><input type="submit" onclick="checksubmit()" value="提交"></form>

通过js控制:
function checksubmit(){     $("#inputForm").submit();//jquery方式.     //document.getElementById("inputForm").submit();原生js方式,未测试.}

加上name属性,后台才能识别。或者用ajax提交

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn