用户从下拉列表中选择后发布

时间:2011-07-11 13:29:08

标签: javascript html

我无法弄清楚如何在名为“Drop”的下拉列表中发布用户选择的选项。

用户点击提交时选择的选项,我希望它将下拉列表的值发布到something.php

因此,例如,如果用户选择“每月”或“每小时”,则应将“每小时”或“每月”发布到something.php

如何做到这一点?

http://pastebin.com/Lr4a8KMq

<select id="mySelect" name="Drop" class="testingStyles">
    <option>Month</option>
    <option>Week</option>
    <option>Day</option>
    <option>Hour</option>
</select>
<input type="button" class="formbutton" onclick="getIndex()" value="Alert index of selected option">
<br/>
<br/>
<form Method ="POST" action="something.php">
    <div id="numbers">
    </div>
    <input type="submit" style="width: 75px; border: 1px solid gray" class="formbutton" value="Submit">
</form>

1 个答案:

答案 0 :(得分:8)

问题是下拉列表不是<form>元素的一部分。将表单的开始标记向上移动以包含下拉列表。

<form Method="POST" action="something.php">移至<select>标记上方。