JavaScript与JSP交互问题
<%@page contentType="text/html; charset=GBK"%><html>
<head>
<title>ChInd</title>
<%!String id;%>
<script language="JavaScript" type="text/JavaScript">
function window(){
var str=prompt("请输入鲜花编号:");
}
</script>
</head>
<body onload="window()">
<%
id = (String) request.getParameter("str");
out.print(id);
%>
</body>
</html>
//我想得到由输入框进来的那个字符,从而用这个字符进行一系列的其他操作。请问应该如何实现,谢谢大家。