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.
我必须将 java 脚本变量 time(var time=date.getTime()) 添加到会话中?是否可以将java脚本变量转换为java变量?
您不能直接这样做,因为 JS 是客户端,而 Java servlet(JSP 页面)在服务器端运行。您必须将 JS 变量发送到服务器(例如使用 AJAX 请求),然后在 java servlet 中处理发送的值。