gpt4 book ai didi

javascript - 单击链接时,在同一 jsp 上异步将 jsp 包含在 div 中

转载 作者:行者123 更新时间:2023-12-02 16:21:33 26 4
gpt4 key购买 nike

我正在尝试实现一个用户帐户页面。在页面中,当我单击左侧的链接(如“搜索用户”、“准备笔记”等)时,我想将相关的 jsp 页面包含在右侧的 div 中,如下所示。

enter image description here

我首先使用 iframe 代替 div,但我可以将 session 对象属性传递给 iframe 中加载的页面,因为 iframe 发送单独的 http 请求。

我想使用 jsp:include 在右侧 div 而不是 iframe 中显示相应的 jsp 页面。新的目标 div 将位于与 iframe 相同的位置。

<%@ page language="java" contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1"%>

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Insert title here</title>
<link rel="stylesheet" href="${pageContext.request.contextPath}/css/bootstrap.min.css">

<script src="${pageContext.request.contextPath}/js/jquery-1.11.2.min.js"></script>
<script src="${pageContext.request.contextPath}/js/bootstrap.min.js"></script>
<style>
#dashboard-iframe{
border: 1px solid gray;
height: 200px;
width: 200px;
}
</style>
<script type="text/javascript">


//jquery function i tried
(document).ready(function() {
$("#searchUser").click(function(){

$("#dashboard-iframe").load("${pageContext.request.contextPath}/searchuser");

});
});

//plain javascript
function searchClick(){
document.getElementById('dashboard-iframe').innerHTML=
"<jsp:include page="${pageContext.request.contextPath}/searchuser">";
}



</script>
</head>
<body onload="hidedisplay()">
<div class="panel panel-default">
<div class="panel-body">
<div class="list-group pull-left">
<a id="searchUser" onclick="searchClick()" href="#" class="list-group-item" target="dashboard-iframe">
<span class="glyphicon glyphicon-search"></span> Search Users
</a>
<a href="${pageContext.request.contextPath}/message_board" target="dashboard-iframe" class="list-group-item">
<span class="glyphicon glyphicon-inbox"></span> Message Board
</a>
<a href="${pageContext.request.contextPath}/prepare_notes" class="list-group-item" target="dashboard-iframe">
<span class="glyphicon glyphicon-list-alt"></span> Prepare Notes
</a>
<a href="${pageContext.request.contextPath}/UploadYourFile" target="dashboard-iframe" class="list-group-item">
<span class="glyphicon glyphicon-upload"></span> Share File
</a>
<a href="${pageContext.request.contextPath}/ComposeMessage" target="dashboard-iframe" class="list-group-item">
<span class="glyphicon glyphicon-envelope"></span> Compose Message
</a>
<a href="${pageContext.request.contextPath}/edit-profile" target="dashboard-iframe" class="list-group-item">
<span class="glyphicon glyphicon-pencil"></span> Edit Profile
</a>
<a href="${pageContext.request.contextPath}/connected-users" target="dashboard-iframe" class="list-group-item">
<span class="glyphicon glyphicon-link"></span> Connected Users
</a>

</div><!-- list-group end -->
</div>
</div>

<div id="dashboard-iframe">
<!-- Where i want to display the pages -->
</div>
</body>
</html>

我尝试过一些 jquery 以及普通的 javascript,但它不起作用。我很早就需要解决方案......抱歉。请帮忙。

最佳答案

你可以写:

function searchClick(){
$('#dashboard-iframe').load('/searchuser');
}

.load() 从服务器加载数据并将返回的 HTML 放入匹配的元素中。

关于javascript - 单击链接时,在同一 jsp 上异步将 jsp 包含在 div 中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29063896/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com