在网上找资源时,踩了一个坑。网上是这么说的:
用a标签post提交表单
<form name='/test/' method='post' id="loginForm">
<input type='text' name='name' value='姓名'/>
<input type='text' name='年龄' value='年龄'/>
<!-- 这里的document:后面要写form的id -->
<a onclick="document:loginForm.submit()"></a>
</form>
结果我给form表单写的id是0a
, 结果不起作用。后来发现原来id的名字第一个字符不能是数字,之后改成a0
就行了。