如何更改 jQuery 中的代码,这些代码将在 html 中引用上述项目?
html代码如下:
<div class="dramer">
<ul>
<li> </li>
<li> <a class="shares" href="#"> Click </a> </li>
<li> </li>
<li> </li>
</ul>
<div class="drops"> </div>
</div>
jQuery中的代码:
$('a.shares').click(function (event) {
event.preventDefault();
event.stopPropagation();
$(this).next(."drops").slideToggle(400);
});
jQuery 中的函数旨在显示和隐藏无法触及的 div<li>
和<ul>
如何修改代码以隐藏 jQuery 并显示 div?