Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
请有人帮助我。 在一个 jsp 文件中,我在 session 中存储了一个值,如下所示: session.setAttribute("myalias", sfl);
我想检索 jquery 中的数据(例如 myjquery.js)。请问我该怎么做?
我尝试了在谷歌上获得的不同插件和示例,但它返回 null 或 NaN。请帮忙。
你不能。会话保存在服务器端的内存(或磁盘)中。jQuery 在客户端的浏览器中运行。
如果您想在客户端获得数据,则需要将其发送到浏览器。
如果您愿意,您可以从会话中获取值并写入客户端
将以下代码作为内联代码写入您的 jsp 文件中,以便您在 javascript 中具有价值并将其与 jquery 一起使用
<script> var testvalue= "<%=yourjspcodetogetfromsession%>" </script>