隐藏没有src的图像

发布于 2024-11-25 00:27:11 字数 99 浏览 0 评论 0原文

我在服务器端生成页面内容,有时实际上我有一个没有 src 的图像。是否可以使用 jquery 隐藏所有此类图像,以便丑陋的图标在 Chrome 中不可见?

谢谢你的帮助

Im generating my page content on the serverside and sometimes as reault I have an image without src. Is it possible to hide all such images using jquery so that ugly icons arent visible for example in chrome ?

thanks for help

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

走过海棠暮 2024-12-02 00:27:11

不应该拥有任何没有src属性的标签!

但是您可以使用$(' img:not([src]), img[src=""]') 选择 src 属性为空或缺失的图像。

You are not supposed to have any <img/> tags without a src attribute!

But you can use $('img:not([src]), img[src=""]') to select images with empty or missing src attrs.

救赎№ 2024-12-02 00:27:11

从 ThiefMaster 得出的更完整的答案将如下所示

$.each($('img:not([src]), img[src=""]'),function(index, value) { 
 value.css('display','none');
});

More complete answer derived from ThiefMaster would be on the following lines

$.each($('img:not([src]), img[src=""]'),function(index, value) { 
 value.css('display','none');
});
旧时光的容颜 2024-12-02 00:27:11

您不应该使用 JavaScript 来隐藏标记中的错误。考虑那些在禁用 JavaScript 的情况下运行的人,或者使用屏幕阅读器的人。

您没有提到您在服务器端使用的内容,但在任何语言中,用 IF 语句包围输出 标记的代码来检查是否src 值为空。

You shouldn't be using JavaScript to hide errors in your markup. Consider people who run with JavaScript disabled, or who use a screen reader.

You don't mention what you're using on the server-side, but surely it's pretty simple in any language to surround the code that outputs the <img> tag with an IF statement to check if the src value is blank.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文