我有一個小的DropDownList有3個選項。 問題是當我選擇,比方說,第二個選項。 沒有probs,打開一個新頁面。HTML下拉列表更改
如果我點擊選項1或3,沒有probs。 但是,如果再次單擊第二個選項,而不是單擊1或2,則不會打開新頁面。
有沒有辦法糾正這種情況,以便點擊任何總是打開一個新窗口。
謝謝...韋恩
抱歉,我不能讓「代碼」或「HTML」的工作。
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>myFavs-HtmlProbs.html</title>
<meta name="Generator" content="PureBasic">
<meta name="Description" content="Your description here...">
<meta name="Description" content="...Created by myFavs % PureBasic...">
<style type="text/css">
</style>
</head>
<body text="#000000" style="background-color:#A69E80; text-align:center;">
<br> <br> <br>
<!--dd <div style=-->
<table width="100%" border="0" style="text-align:center" cellspacing="0" cellpadding="0">
<tr style="text-align:center">
<!-- EXAMPLE: <MenuName="aaMost-Used"> --> <!-- rgb(250,240,255) -->
<select style="width:200px; font:14px Arial Black; color:rgb(0,0,0); background-color:rgb(231,169,126);" name="menu" onchange="window.open(this.value)">
<option selected="0" value="">aaMost-Used</option>
<option value="http://alternativeto.net/">AlternativeToSoftwares</option>
<option value="https://www.biblegateway.com/reading-plans/chronological/today?version=NLT">One Year Chronological Bible NLT</option>
<option value="http://www.portablefreeware.com/">portablefreeware.com/</option>
</select></td></tr></table><br></body></html>
我試過你的代碼其工作正常... 什麼是確切的問題....所有選項打開新窗口 – rahul
因爲你的動作是'onchange',所以如果你多次選擇相同的選項它將無法工作。 – wolfsgang