Yulim KIM

modified

...@@ -20,10 +20,16 @@ ...@@ -20,10 +20,16 @@
20 <input id="search" type="text" placeholder="아이디를 입력하세요" /> 20 <input id="search" type="text" placeholder="아이디를 입력하세요" />
21 </div> 21 </div>
22 <div class="input-field second-wrap"> 22 <div class="input-field second-wrap">
23 - <button class="btn-search" type="button" onclick="movePage()">SEARCH</button> 23 + <button class="btn-search" type="button" onclick="movePage()">인기 게시물 검색하기</button>
24 + <button class="btn-search1" type="button1" onclick="movePage1()">계정 내 검색하기</button>
24 </div> 25 </div>
25 <script type ="text/javascript"> 26 <script type ="text/javascript">
26 function movePage(){ //페이지 이동을 위한 함수 search버튼을 누르면 실행됨 27 function movePage(){ //페이지 이동을 위한 함수 search버튼을 누르면 실행됨
28 + location.href ="/popular/"+document.getElementById('search').value //url을 이렇게 변경함
29 + }
30 + </script>
31 + <script type ="text/javascript">
32 + function movePage1(){ //페이지 이동을 위한 함수 search버튼을 누르면 실행됨
27 location.href ="/timeline/"+document.getElementById('search').value //url을 이렇게 변경함 33 location.href ="/timeline/"+document.getElementById('search').value //url을 이렇게 변경함
28 } 34 }
29 </script> 35 </script>
......