从文本加载 javascript 中的 html 文档
是否可以将 html 文档加载到 DOM javascript 对象中,以便您可以读取文档中的元素?例如,如果我在服务器上有一个文件 Test.html。 Hello.html页面可以调用javascript代码将Test.html加载到DOM对象中吗?
请告诉我。
谢谢
Is it possible to load an html document into a DOM javascript object so that you can read the elements in the document? For example, if I have a file on the server Test.html. Can the page Hello.html call javascript code to load Test.html into a DOM object?
Please let me know.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以向新页面发出 AJAX 请求并获取 HTML 格式的结果。然后您可以将 HTML 绑定到 DOM 元素。
如果您可以使用像 jQuery 这样的 javascrpt 库,那么有一个 load 方法可以从服务器加载数据并将返回的 HTML 放入 DOM 对象中。
请参阅 .load()
You can issue an AJAX request to the new page and get the result as HTML. Then you can bind the HTML to the DOM element.
If you can use a javascrpt library like jQuery there is a load method which loads the data from server and place the returned HTML in a DOM object.
See .load()
使用 jQuery:
Using jQuery: