我已经查看了这个答案jquery append external html file into my page
并且想知道它是否适用于我的情况。
我有一个包含另一个页面的页面,我可以使用 jquery .html() 在包含的页面上注入 html 吗?
<html><body>some text <includedpage.html></body></html>
如果includedpage.html 包含一个div<div class="demo-container">
我可以这样注入吗:?$('div.demo-container')
.html('<p>All new content. <em>You bet!</em></p>');
这行得通吗?