入力が type="button" の場合、フォームを送信するにはどうすればよいですか?
<form action="#" method="POST"><input type="button" value="这是提交的内容"><input type="submit" value="提交"></form>
ところで、
<form action="#" method="POST"><input type="submit" value="提交"></form>
name 属性を追加します
<form action="#" method="POST" id="inputForm"><input type="button" value="这是提交的内容"><input type="submit" onclick="checksubmit()" value="提交"></form>
function checksubmit(){ $("#inputForm").submit();//jquery方式. //document.getElementById("inputForm").submit();原生js方式,未测试.}