gpt4 book ai didi

java - 如何在div中执行或加载servlet?

转载 作者:行者123 更新时间:2023-12-02 06:32:20 24 4
gpt4 key购买 nike

嗨,我正在尝试在 <a> 上打开一个 div标签悬停,即完成。我想在该 div 中加载 jsp 页面数据。但问题是jsp页面的数据来自于servlet,所以在servlet不执行之前数据不会来到jsp页面。

我的 servlet 名称是 showcart.java 。从showcart.java接收数据的页面是 vcart.jsp .

我已经尝试过<jsp:include page="vcart.jsp"></jsp:include>但页面数据为空。所以我需要某种机制,以便 servlet 执行,然后将控制和数据传递给 vcart.jsp .

我的代码:

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Reading Image</title>
<style type="text/css">
.testtmpblock{
display: none;
background-color: black;
height: 100px;
width: 100px;
color: white;
}

</style>
<script src="jquery.min.js" type="text/javascript"></script>
<script>

$(document).ready(function () {
$(document).on('mouseenter', '.cart', function () {
$(this).next(".testtmpblock").show();
}).on('mouseleave', '.cart', function () {
$(this).next(".testtmpblock").hide();
});
});
</script>
</head>
<body>
<a href="#" class="cart"> Cart </a>

<div class="testtmpblock">
<jsp:include page="vcart.jsp"></jsp:include>
</div>
</body>
</html>

任何人都可以帮助我如何在 div 中加载 sevlet 吗?

最佳答案

您可以在此处使用 ajax 在鼠标输入时从 servlet 加载数据。
mouseenter函数中,您可以编写以下代码:

$.ajax(
{
url:'showcart.jsp,'//Or whatever name is
type:'get',
success:function(response)
{
$('.testtmpblock').html(response);
}
});

它将将该 servlet 的 html 渲染代码加载到您的 div 中。

关于java - 如何在div中执行或加载servlet?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19949888/

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