jquery 如何使用无序列表创建语言选择下拉列表?

vm0i2vca  于 12个月前  发布在  jQuery
关注(0)|答案(1)|浏览(121)

基本上,我想创建一个语言下拉列表的旗帜,并与德国作为默认值。
首先,创建一个div和内部

  • 表示德国国旗的img和包含国家名称的p标记
  • 然后ul列出我用css隐藏的其他国家,所以德国国家是默认显示的唯一国家。

然而,这样的话,我不能显示其他国家一旦其中一个被点击;使用jquery。
所以我想做的是把所有的语言都放在ul中,并带有列表项,但这打破了我原来的风格
有没有人可以帮助我的风格,这样我就可以知道我如何可以显示德语li默认,当有人点击另一种语言,默认的jquery的变化?
下面是我目前为止的代码:

body {

    font-family: Arial, sans-serif;
    background: #ddd;
    font-weight: 300;
    font-size: 15px;
    color: #333;
    -webkit-font-smoothing: antialiased;
}

.wrapper-country-dropdown {

    position: relative; 
    width: 200px;
    margin: 0 auto;
    padding: 10px 15px;
    background: #f1f1f1;
    cursor: pointer;
    outline: none;
    -webkit-border-radius:5px;
    -moz-border-radius:5px;
    border-radius:5px;
}

.wrapper-country-dropdown:after {

    content: "";
    width: 0;
    height: 0;
    position: absolute;
    right: 16px;
    top: 50%;
    margin-top: -3px;
    border-width: 6px 6px 0 6px;
    border-style: solid;
    border-color: #444 transparent;
}

.wrapper-country-dropdown .country-dropdown-list {

    position: absolute;
    top: 35px;
    left: 0px;
    right: 0px;
    background: #f1f1f1;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    list-style: none;
    opacity: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
}

.wrapper-country-dropdown .country-dropdown-list li a {

    display: block;
    text-decoration: none;
    color: #838383;
    padding: 10px;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.wrapper-country-dropdown .country-dropdown-list a > img{margin-left: 5px;

}

.flag-icon {
    padding-right: 5px;
    float: left;
}

p { 
    font-size: 16px;
    display: inline;
}

/* Hover  */

.wrapper-country-dropdown .country-dropdown-list li:hover a {
    color: grey;
}

/* Active  */

.wrapper-country-dropdown.active:after {
    border-width: 0 6px 6px 6px;
}

.wrapper-country-dropdown.active .country-dropdown-list {
    opacity: 1;
    pointer-events: auto;
}

个字符

v1l68za4

v1l68za41#

您可以通过以下方式创建列表。

<select name="teste " id="teste ">
     <option >  <li>Coffee</li> </option>
     <option selected="selected">   <li>Tea</li> </option> 
     <option>  <li>Milk</li> </option> 
</select>

字符串
其中**selected=“selected”**该字段默认为选中。
你可以在jquery中得到这个值。

$( "#teste  option:selected" ).text();


你可以参考下面的URL获取更多信息。
Jquery selector

相关问题