3
我試圖建立一個兩層下拉菜單,其中第二個下拉菜單填充第二個下拉菜單。我在網站上發現了很多例子,但是我希望我的菜單在第二個菜單被選中後重定向到一個頁面,並且不能顯示出來。根據另一個選擇填充一個下拉菜單然後重定向
我不是那種速度與JS所以請忍受與我。
下面的代碼是從另一篇文章的例子:
<script type="text/javascript">
function configureDropDownLists(ddl1,ddl2) {
var colours = new Array('Black', 'White', 'Blue');
var shapes = new Array('Square', 'Circle', 'Triangle');
var names = new Array('John', 'David', 'Sarah');
switch (ddl1.value) {
case 'Colours':
document.getElementById(ddl2).options.length = 0;
for (i = 0; i < colours.length; i++) {
createOption(document.getElementById(ddl2), colours[i], colours[i]);
}
break;
case 'Shapes':
document.getElementById(ddl2).options.length = 0;
for (i = 0; i < colours.length; i++) {
createOption(document.getElementById(ddl2), shapes[i], shapes[i]);
}
break;
case 'Names':
document.getElementById(ddl2).options.length = 0;
for (i = 0; i < colours.length; i++) {
createOption(document.getElementById(ddl2), names[i], names[i]);
}
break;
default:
document.getElementById(ddl2).options.length = 0;
break;
}
}
function createOption(ddl, text, value) {
var opt = document.createElement('option');
opt.value = value;
opt.text = text;
ddl.options.add(opt);
}
然後調用它
<select id="ddl" onchange="configureDropDownLists(this,'ddl2')">
<option value=""></option>
<option value="Colours">Colours</option>
<option value="Shapes">Shapes</option>
<option value="Names">Names</option>
</select>
<select id="ddl2">
</select>
這一切工作正常,但我想在頁面重定向到某處該人在第二個下拉菜單中進行選擇之後的網站。
任何人都可以幫助如何適應代碼,使之發生?
謝謝
Thank秒。如果我希望它重定向到第二個下拉選項的不同頁面,如果選擇的第二個選項是藍色,那麼它會工作,如果它重定向到關於藍色事物的頁面,並且他們選擇了白色,那麼它會重定向到關於白色的東西? – 2012-08-05 16:53:58
是的,爲什麼不呢?在我剛剛添加的示例窗體中,它將導航到'/router.php?first = Colors&second = White' - 您決定該頁面包含的內容。 – Bergi 2012-08-05 17:03:54
很酷。謝謝,抱歉錯過了你的更新。非常感謝你的幫助,現在就來玩吧。 – 2012-08-05 17:07:24