김서연

검색 목록정보 스크롤 리스트로 띄우기

...@@ -23,19 +23,22 @@ ...@@ -23,19 +23,22 @@
23 <script type="text/javascript" src="https://dapi.kakao.com/v2/maps/sdk.js?appkey=35fccf4b4e2a3179187346f26ed3f988&libraries=services"></script> 23 <script type="text/javascript" src="https://dapi.kakao.com/v2/maps/sdk.js?appkey=35fccf4b4e2a3179187346f26ed3f988&libraries=services"></script>
24 24
25 <% if(typeof(info) != "undefined"){ %> 25 <% if(typeof(info) != "undefined"){ %>
26 - <ul id="placelist"> 26 + <div style="overflow:scroll; width:500px; height:600px; padding:10px;">
27 - <% for(i=0; i<info.length; i++){%> 27 + <ol id="placelist">
28 - <li class="item"> 28 + <% for(i=0; i<info.length; i++){%>
29 - <div class="info"> 29 + <li class="item">
30 - <h5>기관명 : <%= info[i].orgnm%></h5> 30 + <div class="info">
31 - <span>점심시간 : <%=timeList[i][0]%>:<%=timeList[i][1]%>~<%=timeList[i][2]%>:<%=timeList[i][3] %></span> 31 + <span><strong><%= info[i].orgnm%></strong></span><br>
32 - <span>진료시간 : <%=timeList[i][4]%>:<%=timeList[i][5]%>~<%=timeList[i][6]%>:<%=timeList[i][7] %></span> 32 + <span>점심시간 : <%=timeList[i][0]%>:<%=timeList[i][1]%>~<%=timeList[i][2]%>:<%=timeList[i][3] %></span><br>
33 - <span class="jibun gray">기관주소 : <%=info[i].orgZipaddr%></span> 33 + <span>진료시간 : <%=timeList[i][4]%>:<%=timeList[i][5]%>~<%=timeList[i][6]%>:<%=timeList[i][7] %></span><br>
34 - <span class="tel"><%=info[i].orgTlno%></span> 34 + <span style="color:gray" class="jibun gray"><%=info[i].orgZipaddr%></span><br>
35 - </div> 35 + <span style="color:blue" class="tel"><%=info[i].orgTlno%></span><br>
36 - </li> 36 + </div>
37 - <%} %> 37 + <hr>
38 - </ul> 38 + </li>
39 + <%} %>
40 + </ul>
41 + </div>
39 <%} %> 42 <%} %>
40 43
41 <% if(typeof(result) != "undefined"){ %> 44 <% if(typeof(result) != "undefined"){ %>
......