이런식이구만 ㅎㅎ
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<!DOCTYPE html>
<html>
<head>
<script>
function singleF(){
alert(document.getElementById("singleWord").value);
}
function doubleF(idx){
alert(idx);
}
</script>
<%
String wordA = "ㅋㅋ";
String [] listB={"가", "나", "다"};
%>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
</head>
<body>
<form action="Test" method="get">
<% //동일페이지에서 꺽쇠로 닫혀진 선언부로는 ${wordA} 이런식으로 사용못함 %>
<input type="hidden" id="singleWord2" value="${wordA }" />
<input type="hidden" id="singleWord" value="<%= wordA %>" />
<a href="" onclick="singleF()">한글자</a>
<br><br>
<% //인덱스 번호 알림창 %>
<c:forEach var="list" items="<%=listB %>" varStatus="status">
<a href="" onclick="doubleF(${status.index })">${status.index }번째 글자</a>
<br>
</c:forEach>
</form>
</body>
</html>
댓글
댓글 쓰기