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

· 10년 전 · 490

 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년 전 조회 442
10년 전 조회 314
10년 전 조회 283
10년 전 조회 303
10년 전 조회 404
10년 전 조회 321
10년 전 조회 274
10년 전 조회 276
10년 전 조회 279
10년 전 조회 241
10년 전 조회 242
10년 전 조회 421
10년 전 조회 491
10년 전 조회 277
10년 전 조회 271
10년 전 조회 236
10년 전 조회 246
10년 전 조회 345
10년 전 조회 275
10년 전 조회 199
10년 전 조회 253
10년 전 조회 623
10년 전 조회 551
10년 전 조회 419
10년 전 조회 319