我在我的客户端wordpress博客中使用以下 jQuery 块:
jQuery(this)
.children(":not('.previewTitle, .previewBody')")
.fadeTo(fadeTime, activeOpacity, function(){
//some code
});
此代码淡化父容器(this),但不是我想要的两个内部容器.previewTitle
和.previewBody
。此代码适用于除iOS(5)Safari之外的所有主要浏览器版本 - 有没有人知道为什么 iOS 对我有好处?
谢谢!
编辑:我已经检查了几次您的测试代码,但我真的看不出有什么区别。这是我的完整代码:jQuery(thumbs).hover(
function(){
jQuery(this).children(":not(.previewTitle, .previewBody)").fadeTo(fadeTime, activeOpacity, function(){
//Display Preview Body once faded in
strId = jQuery(this).closest('div').attr('id'); //Get parent DIV ID
jQuery('#previewTitle' + strId.substr(9)).show();
jQuery('#previewBody' + strId.substr(9)).show();
});
},
function(){
// Only fade out if the user hasn't clicked the thumb
if(!jQuery(this).hasClass(clickedClass))
{
//Fade out of thumbnail..
jQuery(this).children(":not(.previewTitle, .previewBody)").fadeTo(fadeTime, inactiveOpacity, function(){
//Hide Preview Body once faded out
strId = jQuery(this).closest('div').attr('id'); //Get parent DIV ID
jQuery('#previewTitle' + strId.substr(9)).hide();
jQuery('#previewBody' + strId.substr(9)).hide();
});
}
});
答案 0 :(得分:3)
您不会将参数放在:not
引号中,只需:
jQuery(this).children(":not(.previewTitle, .previewBody)").fadeTo(....
// no quote ----^ no quote ----^
:not
接受选择器,而不是字符串。我很感兴趣它可以在其他浏览器上使用引号...
除此之外,它应该工作。它适用于iOS 4.3.2(我妻子的iPad):Live copy | source
HTML:
<p>Click anywhere in the shaded container:</p>
<div id="container">
<p>Child that will fade</p>
<p>Another that will fade</p>
<p class="previewTitle">previewTitle - won't fade</p>
<p>Another that will</p>
<p class="previewBody">previewBody - won't fade</p>
<p>Another that will</p>
</div>
JavaScript的:
jQuery(function($) {
$("#container").click(function() {
$(this)
.children(":not('.previewTitle, .previewBody')")
.fadeTo("slow", "0.2");
});
});
...但我没有iOS 5方便测试。
旁注:
此代码淡化父容器(this),但不是我想要的两个内部容器
.previewTitle
和.previewBody
。
您引用的代码根本不会淡化父容器。它会消除所有孩子,除了列出的两个。那不是一回事。