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.
我有一个段落,id = story我想使用 servlet 动态更改其文本。我该怎么做呢?我是新手,使用getWriter().println()似乎是创建一个新文档而不是附加到现有文档。谢谢
id = story
getWriter().println()
简单的答案 - 你不能。
服务器端代码不能更改已经发送给客户端的响应。要更改 HTML 标记内的文本,请在浏览器上使用 Javascript。
见http://www.w3schools.com/ajax/