Yulim KIM

modified

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