익스플로러에서는 AddFavorite() 이라는 함수가 먹힌다.
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<script>
function addFavorite(){
try{
window.external.AddFavorite('http://localhost:9999/Mission-WEB', '첫번째 나의 웹')
}catch(e){
alert("현재 사용중인 브라우저에서는 사용할 수 없습니다. \n 크롬에서는 ctrl+d를 이용해주세요.")
}
}
</script>
<table border="1" style="width: 100%">
<tr>
<td rowspan="2" style = "width : 128px; height : 40px;" >
<a href ="/Mission-WEB">
<img src ="/Mission-WEB/images/hana2.jpg" style = "width : 128px; height : 40px;">
</a>
</td>
<td align = "right">
<!-- <a href = "javascript:addFavorite()"> -->
<a href = "#" onclick ="addFavorite()">
즐겨찾기
</a>
</td>
</tr>
<tr>
<td>
회원관리 |
<a href ="/Mission-WEB/jsp/board/list.jsp">게시판</a>
| 회원가입 | 로그인 | 마이페이지 | 로그아웃
</td>
</tr>
</table>
'웹 프로그래밍 > JSP' 카테고리의 다른 글
[JSP] 쿠키와 세션 (0) | 2020.07.21 |
---|---|
[JSP] 페이지 이동 기술(forward, response.sendRedirect) (0) | 2020.07.21 |
[JSP] welcome-file-list 역할 (0) | 2020.07.21 |
[JSP] include(지시자와 액션태그) + jstl import (0) | 2020.07.21 |
[JSP] 절대 경로 주의 (include, forward, .xml) (0) | 2020.07.20 |