我编写了一个 html 页面,并编写了以下代码,我使用 Jquery 在 html div 中加载特定的 url:
<html>
<head>
<title>forms</title>
<%
String outputLink = ServerSupportUtil.getAttributeStringValue(request,"outputlink");
String secParam = ServerSupportUtil.getAttributeStringValue(request,"secparam");
%>
<script src="../common/jquery-1.6.2.min.js"></script>
<script>
$(document).ready(function(){
$("#menu").html('<object data="<%=outputlink%>">').appendTo('body');;
});
</script>
</head>
<body>
<div id="menu" style="position:relative; bottom: 0; overflow:hidden;">
</div>
</body>
</html>
上面的代码运行良好。
现在我还想通过 http post 发送一个名为secParam的特定参数(我从请求对象获得)以及这个 url,以便服务器可以进行身份验证。
那么我应该如何通过 http post 请求在 div 中加载相同的 url?这可能使用 Jquery 吗?