我不知道为什么表单在点击按钮后没有向exp.php
发送数据。它只是调用url,但GET和POST不会提交任何数据:
<form id="sendrating" action="exp.php" method="post">
<input id="score" type="range" min="0" max="100" value="50"/>
<input id="group" type="hidden" value="">
<input id="randomid" type="hidden" value="">
<br /><br />
<input type="submit" id="ok">
</form>
答案 0 :(得分:2)
您的输入没有名称属性,请尝试以下操作:
<form id="sendrating" action="exp.php" method="post">
<input id="score" name="score" type="range" min="0" max="100" value="50"/>
<input id="group" name="group" type="hidden" value="">
<input id="randomid" name="randomid" type="hidden" value="">
<br /><br />
<input type="submit" id="ok">
答案 1 :(得分:1)
输入标记只有在具有DELETE
属性的情况下才会将其数据作为表单的一部分提交。只是拥有name
还不够好。