소금디자인

텍스트 검색창

· 4년 전 · 2415 · 1

기존에 검색 마킹시스템에서 검색바를 추가 했습니다.

검색을 종료하고싶을때는 리프레쉬버튼을 클릭하여 페이지를 리로드 합니다. 

 

 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
    <li class="searchCon"><i class="fas fa-search" style="cursor:pointer;"></i></li>
      <li class="searchBar">
      <form id="f1" name="f1" action="javascript:void()">
        <input type="text" id="t1" name="t1" style="width:60px; font-size:20px; border:1px solid #eee;">
        <input type="button" value="검색" id="search_btn" style="font-size:16px; border:1px solid #eee; background-color:pink; padding:5px; color:white; border-radius:5px; cursor:pointer;">
      </from>
      </li>
 
 
 
    <script>
      let searchCon = document.querySelector(".searchCon");
      let textinput = document.querySelector(".searchBar");
      let searchIcob = document.querySelector(".fa-search");
      textinput.style.display = "none";
 
      searchCon.onclick = function searchBar(){
        
        if(textinput.style.display == "none" && searchCon.className == "searchCon"){
          searchCon.className += " searchOn"
          textinput.style.display = "";
          searchIcob.className = "fas fa-sync-alt";
        } else {
          searchCon.className = "searchCon"
          textinput.style.display = "none";
          history.go(0);
        }
      }
    </script>
cs
|

댓글 1개

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

그누보드5 팁자료실

+
제목 글쓴이 날짜 조회
4년 전 조회 3,376
4년 전 조회 3,026
4년 전 조회 5,624
4년 전 조회 3,909
4년 전 조회 3,766
4년 전 조회 5,750
4년 전 조회 3,802
4년 전 조회 3,695
4년 전 조회 2,827
4년 전 조회 3,235
4년 전 조회 4,491
4년 전 조회 2,468
4년 전 조회 3,751
4년 전 조회 2,558
4년 전 조회 2,416
4년 전 조회 3,082
4년 전 조회 4,673
4년 전 조회 3,042
4년 전 조회 3,492
4년 전 조회 4,285
4년 전 조회 3,317
4년 전 조회 3,607
4년 전 조회 2,881
4년 전 조회 3,233
4년 전 조회 7,080
4년 전 조회 2,967
4년 전 조회 6,795
4년 전 조회 8,469
4년 전 조회 3,876
4년 전 조회 4,254