前端之家收集整理的这篇文章主要介绍了
jquery将外部html文件附加到我的页面中,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我试图附加外部html
内容(div
加上一些文本只是为了测试)这样:
$.get("banner.html",function(data){
$(this).children("div:first").append(data);
});
这似乎很简单,但似乎不起作用。任何想法?谢谢!
使用html而不是追加:
$.get("banner.html",function(data){
$(this).children("div:first").html(data);
});
原文链接:https://www.f2er.com/jquery/183398.html