13,097
社区成员




<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<%@ page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<html>
<head>
<meta http-equiv="Content-type" content="text/html; charset=UTF-8">
<title>jsp page show test</title>
</head>
<body>
<input type="hidden" id="gS_Num" value="${param.gS_Num}"/>
<input type="hidden" id="gS_SubType" value="${param.gS_SubType}"/>
<script>
var gS_Num = document.getElementById('gS_Num').value;
var gS_SubType = document.getElementById('gS_SubType').value;
alert("gS_Num = "+gS_Num+", gS_SubType = "+gS_SubType);
</script>
</body>
</html>