본문 바로가기

웹 프로그래밍/JSP

[JSP] HTML 코드 내에 javascript 사용 방법

 

 

익스플로러에서는 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>