所以我的确切问题是,我有一个选择表格。其中有4个选项,值为1,2,3和4.选择旁边有一个按钮形式。每当我点击按钮时,它都应该导航到选择表单的所选选项的位置(例如index.php?page = 1)。我怎么解决这个问题?我已经阅读了它不可能由于php的服务器端机制等,但必须有一种方法..到目前为止,我有一个按钮的onclick事件,如...:location.href ='index.php ?page = ..还有什么进去..
答案 0 :(得分:0)
它会起作用
<select id="some_id">
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
</select>
<button type="button" onclick="window.location.href='index.php?page='+document.getElementById('some_id').value;">Go</button>
答案 1 :(得分:0)
正常的GET表格应该有效。
<form action="index.php" method="get">
<select name="page">
<option value="1">Page Name</option>
...
</select>
<input type="submit" value="Submit">
</form>