我可以将jsp 作为innerHml 包含在来自javascript 函数的jsp 中吗?
将外部 jsp 页面包含为来自 javascript 函数的 innerHtml
Including an external jsp page as an innerHtml from a javascript function
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的。当它到达客户端(即
innerHTML
所在的位置)时,JSP 页面看起来就像从服务器加载的任何其他页面一样。您必须使用 Ajax 加载它(使用XMLHttpRequest
MSDN 链接 MDC 链接),这将为您提供页面的标记,然后将其分配给innerHTML
属性。Yes. By the time it gets to the client (which is where the
innerHTML
is), a JSP page just looks like any other page loaded from the server. You have to load it with Ajax (usingXMLHttpRequest
MSDN link MDC link), which will give you the markup of the page, and then you assign it to theinnerHTML
property.