<%@ page language="java" contentType="text/html; charset=EUC-KR"
pageEncoding="EUC-KR"%>
<html>
<html>
<head>
<title></title>
<script type="text/javascript">
function chk(){
location.href = "viewdetail.do;
}
</script>
</head>
<body>
<div align="center">
<h3>${MS_DTO.title}</h3><br>
<c:if test="${MS_DTO != null}">
<form>
<select name="no">
<c:forEach var="ml" items="${MSList}">
<option onclick="chk(${ml.no})">
${ml.title}
</option>
</c:forEach>
</select>
</form>
</c:if>
<%@ include file="footer.jsp" %>
option을 클릭하면 chk()가 발생해서 저 viewdetail.do로 이동하려고 하는데 onclick이 안되는지 확인해볼려고 location.href = "viewdetail.do"; 대신에 alert("1")을 써봤는데 alert도 발생하지 않더라구요 ㅠㅠ script를 <c:forEach var="ml" items="${MSList}"> 안에 넣어도 안되구요.. 다른분이 이것과 비슷하게 했을 때는 잘 되던데 왜 제꺼는 안되는지 모르겠네요..