0

创建http://jsfiddle.net/jWwPV/某种下拉菜单。

<div class="dropdown_navigation_general" style="float:left;" >
    <select name="general_select" id="general_select" onchange="window.document.location.href=this.options[this.selectedIndex].value;" value="general">
        <option selected>General</option>
        <option value="http://www.google.com">Add transaction partner</option>
    </select>
</div>

.dropdown_navigation_general {
    margin:auto;
    width:70px;
    overflow:hidden;
}
.dropdown_navigation_general select {
    background: transparent;
    width: 100px;
    padding: 0px;
    font-size: 14px;
    border: 0px solid #fff;
    height: 19px;
    -webkit-appearance: none;
}

当我点击Add transaction partner,然后在菜单顶部的一小会,而不是General我看到的Add transaction partner

是否有可能在单击菜单顶部的任何下拉菜单值后,我总是看到General(选定值)。

4

1 回答 1

1

试试这个:

<select name="general_select" id="general_select"
 onchange="window.document.location.href=this.options[this.selectedIndex].value;
 this.value='general'">

演示:http: //jsfiddle.net/jWwPV/1/

于 2013-11-06T07:50:04.263 回答