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 页面并将页面分配给没有 iframe 的变量。
谁能帮我解决这个问题。
我会使用 jquery 通过 $.get 方法解决这个问题。
var externalHtml; $.get('external_page.html', function(data){ externalHtml = data; });