- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个预设的7个图像持有者div,我向php发送请求以检索用户的作品,所以假设如果有3个作品并且我添加到3个img持有者,我将有4个空图像div,我不知道如何检查以隐藏其余部分。
HTML
<div class="portfolio_thumb">
<div class="portfolio_thumbImg_holder columns"><img src=""></div>
<div class="portfolio_thumbImg_holder active columns"><img src=""></div>
<div class="portfolio_thumbImg_holder columns"><img src=""></div>
<div class="portfolio_thumbImg_holder columns"><img src=""></div>
<div class="portfolio_thumbImg_holder columns"><img src=""></div>
<div class="portfolio_thumbImg_holder columns"><img src=""></div>
<div class="portfolio_thumbImg_holder columns"><img src=""></div>
</div>
Jquery
$('.portfolio_thumbImg_holder img').each(function(index, element) {
linksArray.push("http://localhost/testdatabase/cms/" + data[index].links);
$(element).attr("src", linksArray[index]);
titleArray.push(data[index].title);
$(element).attr("title", titleArray[index]);
descArray.push(data[index].desc);
$(element).attr("desc", descArray[index]);
alert("index:"+index + " " + linksArray[index] + " " + titleArray[index] + " " + descArray[index]);
});
如何改进 jquery 代码以隐藏所有其他未加载图像的 div
?
代码运行后,我的
<div class="portfolio_thumbImg_holder columns"><img src=""></div>
变成
<div class="portfolio_thumbImg_holder columns"><img></div>
所以我不能使用
$(".portfolio_thumbImg_holder img[src='']").hide();
更新:
@jackDuong 提供了我需要的代码
$(".portfolio_thumbImg_holder img:not([src])").parent().hide();
但是在我当前的代码上实现后,$.each函数之后的所有代码都将无法运行,知道为什么吗?
$.ajax({
type: "POST",
dataType: "json",
data: ({id: idArray[index]}), // pass the name of clicked holder into php to query
url: "CMS/PHP/retrieveAuthorWorks.php",
success: function(data) {
// reset all the arrays value to store new values upon new click
$('.portfolio_thumbImg_holder img').removeAttr("src");
linksArray=[];
titleArray=[];
descArray=[];
$(".full_image_desc .title").html(data[0].title);
$(".full_image_desc .info").html(data[0].desc);
$('.portfolio_thumbImg_holder img').each(function(index, element) {
linksArray.push("http://localhost/testdatabase/cms/" + data[index].links);
$(element).attr("src", linksArray[index]);
titleArray.push(data[index].title);
$(element).attr("title", titleArray[index]);
descArray.push(data[index].desc);
$(element).attr("desc", descArray[index]);
//$(".portfolio_thumbImg_holder img:not([src])").parent().hide();
});
// from here onwards code won't run
alert("hi");
$(".portfolio_thumbImg_holder img:not([src])").parent().hide();
}
});
最佳答案
我明白了...您向“portfolio_thumb”添加了 7 棵榆树。
就这样做:
$(".portfolio_thumbImg_holder img[src='']").hide();
如果你想隐藏div(父级)只要这样做:
$(".portfolio_thumbImg_holder img[src='']").parent().hide();
试试这个例子: http://jsfiddle.net/duongtuanluc/2ktwa75e/
我看到你改变了问题。
如果标签img没有属性src只要这样做:
$(".portfolio_thumbImg_holder img:not([src])").parent().hide();
关于javascript - 检查类是否包含img src,如果不包含,则隐藏它。 jQuery,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27032845/
我想替换每一个 带结束标记 字符串中的标记。该字符串实际上是一个 html 文档,其中 img 标记由我生成,并且始终如下所示: Src 是用户输入,所以它可以是任何东西。我做了一个正则表达式,不确
我使用数组通过 getElementsByClassName 存储我所有的 imgs。 我需要知道哪个 img 被点击或 mouseover/mouseout,所以我使用循环来检查哪个 img 被点击
我正在尝试使用图像制作一款类似 Match3 的游戏,但我无法进行比较。我正在为固定数量的 atm 执行此操作,只是为了让它正常工作,稍后应该在 foreach 循环中。如果有什么区别的话,该函数位于
我希望你能帮助我:) 我想定义 img 的高度,相对于图像的“实际”宽度。但宽度是动态的,因为它占父对象的百分比(wxample 的浏览器窗口)。 为什么我需要高度?:没有高度它工作正常,但我需要它,
我知道这个话题被讨论了很多,但我找不到任何适合我的解决方案。所以,我的代码大致是: var img =me.images[curID] var f = function() { var
我试图在一个页面上列出多个图像,但当您单击图像时,它会以模式打开。 它适用于第一张图片,但不适用于其他图片,我假设这是一个 JS 问题,我尝试设置一个空的 var,然后将其设置为获取元素 ID(每个
任务:我们正在通过 HttpWebRequest 抓取 HTML 内容(约 6,000 个调用)。该字符串经过修剪并存储在 SQL Server 2014 数据库中,以便作为 XML 进行处理。 问题
我从上面得到这个错误,不知道如何避免它。我的目的是获取屏幕截图,然后对其进行模板匹配,以查看此时屏幕上是否显示图标。到目前为止,它只是图标的位置。我的代码: #include "opencv2/hig
我有一个包含图像的容器,该图像是从应用程序加载的,因此容器的尺寸是已知的,而图像会有所不同。 我目前有以下 css: #secondary_photos { height: 100px; wi
我正在尝试设置一个随分辨率缩放但看起来仍然不错的页面背景..这就是我正在使用的.. 站点是http://www.gd-gaming.com/wordpress ,如果你用 Firebug 检查它,它只
目前我有 如何删除包装 img 标签的 p 标签? 所以我可以得到.. 最佳答案 使用 $('p > img').unwrap(''); 这将删除 img 周围的所有 p。您应该使用 cl
我想要动画 3 .svg图片: 和css : .sequence { position: relative; } .sequence img { position: ab
我有外部 RSS 提要填充以下重复出现的类 elements 。 {teaserImage} {teaserImage} {teaserImage} 我想简单地获取 :first 实例,该实例也是来自
这是一个独特的问题: 我不想使用浏览器 JavaScript 来解决这个问题,请继续阅读... 我要转换 通过编译应用程序( ng build 或 ng serve )到 Base64 img 标签,
悬停在 中的第一张图片上标记,我需要使用 CSS 增加第二张图片的不透明度。我试过使用 +和 ~运营商,无法让它发挥作用。任何帮助将不胜感激。 最佳答案 a:hover + img
我已经尝试解决这个问题有一段时间了,但我迷路了,有人吗? for(var i=0; i<10; i++) { var Img = new Image(); Img.onload = (
这就是我想要实现的目标: 当用户将鼠标悬停在较小的图像之一上时: 较小的图像 + 文本应替换较大的图像 + 文本。 当用户没有悬停时;将大集返回到其原始图像和文字。 这就是我到目前为止所拥有的。它没有
我知道如何在 php 中执行此操作,但我需要在 javascript/jquery 中完成此操作。 我正在尝试执行以下操作: $('#NewBox').html( $('#OldBox').html(
我正在使用一个 CMS (ExpressionEngine),它将段落标签包裹在图像周围。我正在使用响应式图像(最大宽度:100%),并且由于我还在段落上定义宽度,因此它会导致问题。我想使用 jQue
Tinymce 正在删除我的 img 结束标记并生成无效的 xhtml。 它变成了这个 进入这个 我也在使用 codemagic,但是在查看 html 时它仍然显示 .我也试过包括 , 但输出是
我是一名优秀的程序员,十分优秀!