sample.jsp

<%@ page language="java" contentType="text/html; charset=utf-8" pageEncoding="utf-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-31j">
<title>view</title>
<script language="javascript">
function onPriviousPage() {
   var a = document.bbb.abc.value;
   location.href=a;
}
</script>
<style type="text/css">
<!--
.samp {
   border: none;
   width: 8.5em; 
   word-wrap: break-word;
}
-->
</style>
</head>
<body>
<% String sam = (String)request.getAttribute("sam");%>
<form name="bbb">
<br>
下のボタンをクリック<br><br>
<input type="button" value="遷移する" onclick="onPriviousPage()">
<br>
<input type="text" name="abc" value=""/>
<br>
<div class="samp"><%= sam %></div>
<br>
</form>
</body>
</html>




























最終更新:2013年07月09日 02:34