간단한 셀렉트 드롭다운 제이쿼리

· 10년 전 · 515

 html

 

<div class="select">

    <a href="#">Select 1</a>

    <ul>

        <li>Select 1</li>

        <li>Select 2</li>

        <li>Select 3</li>

    </ul>

</div>

 

 

css

 

.select {position:relative; line-height:35px;}

.select > a {display:block; border:1px solid #ccc; padding:0 8px; overflow:hidden;}

.select > a:after,

.select > ul > li:first-child:after {display:block; float:right;}

.select > a:after {content:'▼';}

.select > ul {position:absolute; width:100%; top:1px; background:#fff; display:none;}

.select > ul > li {cursor:pointer; padding:0 8px; border:1px solid #ccc; border-top:0;}

.select > ul > li:first-child:after {content:'▲';}

 

 

 

Jquery

 

$("div.select > a").click(function() {

    $(this).next("ul").toggle();

    return false;

});

 

$("div.select > ul > li").click(function() {

    $(this).parent().hide().parent("div.select").children("a").text($(this).text());

    $(this).prependTo($(this).parent());

});

|
댓글을 작성하시려면 로그인이 필요합니다.

팁게시판

디자인과 관련된 유용한 정보를 공유하세요. 질문은 상단의 QA에서 해주시기 바랍니다.

+
제목 글쓴이 날짜 조회
10년 전 조회 456
10년 전 조회 330
10년 전 조회 302
10년 전 조회 322
10년 전 조회 424
10년 전 조회 336
10년 전 조회 285
10년 전 조회 293
10년 전 조회 298
10년 전 조회 256
10년 전 조회 263
10년 전 조회 448
10년 전 조회 516
10년 전 조회 296
10년 전 조회 288
10년 전 조회 251
10년 전 조회 261
10년 전 조회 362
10년 전 조회 289
10년 전 조회 217
10년 전 조회 268
10년 전 조회 637
10년 전 조회 568
10년 전 조회 441
10년 전 조회 332