gpt4 book ai didi

java - 如何在 scriptlet 中使用脚本变量

转载 作者:行者123 更新时间:2023-12-01 19:44:47 24 4
gpt4 key购买 nike

任何人都可以帮我从 name 变量中获取值并将其存储在 name_val 中吗?

 <%@page contentType="text/html" pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>JSP Page</title>

<script type="text/javascript">
function dropdelete(ev)
{
var name=document.getElementById("user"+stringToArray[1]).value;
}
<% String name_val ; %>
</script>
</head>
<body>
</html>

最佳答案

javascript是客户端,jsp是服务器端。所以你不能像这样存储

String name_val =document.getElementById("user"+stringToArray[1]).value;

按照以下方式尝试ajax

var name=document.getElementById("user"+stringToArray[1]).value;
$.ajax(
{
type: "POST",
url: "store.jsp", //Your full URL goes here
data: { name: name},
success: function(data, textStatus, jqXHR){
alert(data);
},
error: function(jqXHR){
alert(jqXHR.responseStatus);
}
});

现在在 store.jsp

<%String name_val =request.getparameter("name");%>

关于java - 如何在 scriptlet 中使用脚本变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20063978/

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