jsp中的echo指令
如何在jsp中制作“echo”(php)?
How to make "echo" (php) but in jsp?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何在jsp中制作“echo”(php)?
How to make "echo" (php) but in jsp?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
你可以这样做:
out.print("whatever you Want to echo");
也可以:
其中variableNmae
是您想要输出的值。希望有帮助。
You can do like this:
out.print("whatever you want to echo");
also:<c:out value="${variableName}" />
wherevariableNmae
would the value you want to output.Hope that helps.
或者甚至更好
Or even better
假设我们有“一些”变量:
然后让我们将其打印在 html 上,如下所示:
Let say we have 'some' variable:
Lets then print it on html as follow: