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.
我在常规站点的子目录中有一个移动站点,我从常规站点获取的某些页面的内容,这很好,我使用以下代码:
$('.lastnews').load('/index-bestanden/news/news.html #newsmessage div:first');
在原始内容中是图像,当然它们在移动网站上显示为损坏,我想要的是获得没有图像的内容。
那可能吗 ?如何
到目前为止,我尝试了 .note 和 .exclude ,但无法正常工作
谢谢
您始终可以选择和删除他们的图像:
$(".foo img").remove();
如果我们从加载回调中执行此操作,它将如下所示:
$('.lastnews').load('...news.html #newsmessage div:first', function(){ $(this).find("img").remove(); });