HTML表单不会将数据发送到新的URL:\

时间:2017-03-02 19:44:48

标签: html forms

我不知道为什么表单在点击按钮后没有向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>

2 个答案:

答案 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还不够好。