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.
是否可以在 Javascript 中将用于网页的输出重定向到变量?
我正在调用托管在另一台服务器上的函数,它将 HTML 数据写入我的网页。但我想将该数据保存在变量中,而不是直接显示。
您可以创建一个DocumentFragment和appendChild()HTML。然后,您可以稍后在需要时附加它。
DocumentFragment
appendChild()
var frag = document.createDocumentFragment(htmldata); //... //later: document.getElementById("mydiv").append(frag);
这就是你要找的那种东西……?