gpt4 book ai didi

javascript - 无法将 jsp 值传递给 javascript

转载 作者:行者123 更新时间:2023-12-03 10:47:36 25 4
gpt4 key购买 nike

我正在开发一个 jsp 应用程序。我有一个 Bean 用户。在 javascript 中,我有用户 ID。我想将其发送到 javascript。使用 id 的 getter 方法 - getId() 我尝试过以下内容但不起作用 -

<script type="text/javascript">
var userId = '<% getId()%>';
alert("User Id is: " + userId);
</script>

我做错了什么吗?谁能帮帮我。

谢谢

最佳答案

不建议使用JSP Scriptlet,在 session 中设置用户ID并使用EL expression在JSP中访问它

<script type="text/javascript">
alert("User Id is: " + ${userId});
</script>

关于javascript - 无法将 jsp 值传递给 javascript,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28515981/

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