我正在尝试做一些常规的点击功能,我必须在点击元素之外找到一个元素。这是一些代码:
<div class="options">
<span class='comment_now'>kommentér</span>
</div>
<div class="write_comment_wrap">
<form method="post" class="write_comment_form">
<textarea class="write_comment" name="write_comment" placeholder="skriv din kommentar..."></textarea>
<input type="submit" value="skriv" class="global_button">
</form>
</div>
JS:
$('.comment_now').click(function(){
$(this).closest('.write_comment_wrap').slideToggle();
});
什么都没有发生。我试图发出警报,以确定我是否在该函数内部。伙计们,我使用了错误的遍历功能。