我似乎无法让jquery找到我所拥有的产品网格。知道如何设置它吗?
<div id="sold-out" style="margin-top: 10px">
<a class="grid-view-item__link grid-view-item__image-container" href=
"/products/moringa-and-coconut-soap"></a>
<form accept-charset="UTF-8" action="/contact#contact_form" class=
"contact-form" id="contact_form" method="post" name="contact_form">
<a class="grid-view-item__link grid-view-item__image-container" href=
"/products/moringa-and-coconut-soap"><input name="form_type" type="hidden"
value="contact"><input name="utf8" type="hidden" value="✓"></a>
<p><a class="grid-view-item__link grid-view-item__image-container" href=
"/products/moringa-and-coconut-soap"></a><a class=
"product-page-notify-me notify-me" href="#" style="color: #788188;">Email
me when available</a></p>
<div class="clearfix notify-me-wrapper" style="display:none">
<input class="styled-input" name="contact[email]" placeholder=
"[email protected]" required="required" style="float:left; width:100%;"
type="email" value=""> <input name="contact[body]" type="hidden" value=
"Please notify me when Moringa and Coconut Soap becomes available.">
<input class="btn styled-submit" style="float:left;" type="submit" value=
"Send">
</div>
</form>
</div>
Javascript代码:
jQuery('.notify-me').click(function() {
alert('hello');
jQuery($(this).parent().find('.notify-me-wrapper').fadeIn());
return false;
});
然而,我的另一页上的代码,针对一个项目,工作正常:
jQuery('#notify-me').click(function() {
jQuery('#notify-me-wrapper').fadeIn();
return false;
} );
.notify-me
的父亲是p
元素,这个元素不包含calss notify-me-wrapper
的任何后代
您可能想要使用closest
,这样您就可以搜索最接近的祖先,您确定它包含类notify-me-wrapper
的元素:
$(this).closest('.contact-form').find('.notify-me-wrapper').fadeIn()
对于集合中的每个元素,通过测试元素本身并遍历DOM树中的祖先来获取与选择器匹配的第一个元素。