gpt4 book ai didi

javascript - 嵌套在多个 DIV 和 PHP 代码中的 jQuery 选择器

转载 作者:太空宇宙 更新时间:2023-11-03 17:50:32 25 4
gpt4 key购买 nike

我正在尝试为我网站上的图像添加 jquery 悬停效果,我希望图像在鼠标悬停时变得不透明,并在鼠标移出时恢复为完全不透明。我遇到的问题是图像正在通过 PHP 在我的页面上填充,我不知道使用什么选择器来获得我想要的效果。

这是HTML

<div id='gridcontainer'>

<?php
$counter = 1; //start counter
$grids = 2; //Grids per row
global $query_string; //Need this to make pagination work
/*Setting up our custom query (In here we are setting it to show 12 posts per page and eliminate all sticky posts*/
query_posts($query_string . '&caller_get_posts=1&posts_per_page=12');
if(have_posts()) : while(have_posts()) : the_post();
?>
<?php
//Show the left hand side column
if($counter == 1) :
?>
<div class="griditemleft">
<div class="postimage">
<?php the_content('Read the rest of this entry &raquo;'); ?>
</div>
</div>
<?php
//Show the right hand side column
elseif($counter == $grids) :
?>
<div class="griditemright">
<div class="postimage">
<?php the_content('Read the rest of this entry &raquo;'); ?>
</div>
</div>
<?php
$counter = 0;
endif;
?>
<?php
$counter++;
endwhile;
endif;
?>


</div>

这就是 HTML 在 FIREBUG 中的显示方式(显示图像标签)

<div id="gridcontainer">
<div class="griditemleft">
<div class="postimage">
<p>
<a href="http://margierodrigues.com/taliecarterbeauty/wp-content/uploads/2014/12/lash_3.gif">
<img class="alignnone size-medium wp-image-108" width="300" height="300" alt="lash_3" src="http://margierodrigues.com/taliecarterbeauty/wp-content/uploads/2014/12/lash_3-300x300.gif">
</a>
</p>
</div>

谁能提供任何见解?

最佳答案

尝试使用 $('.postimage img') 选择器。这应该将您设置的任何所需效果应用到包装在 postimage div 中的 img 标签。

关于javascript - 嵌套在多个 DIV 和 PHP 代码中的 jQuery 选择器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27415431/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com