我有一個錯誤,我無法找到解決方案,我沒有使用jQuery;我沒有任何分度,提交姓名類型錯誤:的document.getElementById(...)提交不是一個函數
我的代碼是
<!DOCTYPE html>
<html>
<head>
<script>
function formSubmit()
{
document.getElementById('web').submit();
}
</script>
</head>
<body>
<form action="class003.php" id="g_form" method="POST">
<input type="text" name="f1" value="">
</form>
<div id="web" onclick="formSubmit()">click</div>
</body>
</html>
上CHROM我在Firefox相同收到此錯誤
Uncaught TypeError: document.querySelector(...).submit is not a function at formSubmit (test2.html:8) at HTMLDivElement.onclick (test2.html:19)
錯誤
TypeError: document.getElementById(...).submit is not a function[Learn More]