如何从 DL 列表中选择任意一个元素

发布于 2024-11-08 15:58:13 字数 524 浏览 0 评论 0原文

我有一个 DL 列表,其中 DT 中有标题,DD 中有信息。 我将使用jquery从DT中选择一个标题,并在单击时打开DD。我的问题是如何“仅”选择我单击的DT并打开该DD?现在,当我单击 DT 时,所有 dd 都会通过切换开关打开和关闭

从视图:

foreach($allnews as $row){
echo "<dt class=\"row\">$row->date - $row->subject </dt>";
echo "<dd class=\"show\">$row->news</dd>";
}

Jquery

$(function(){
   $('.show').hide();
   $('.row').click(function(){
       $('.show').toggle("slow");      
   });   
});

谢谢您的时间

I have a DL list with a title in the DT and information in the DD. I am going to use jquery to select a title from the DT and open the DD when its clicked. My question is how can I select "just" the DT I click and open that one dd? Right now when I click on a DT all dd's open and close with the toggle

From the view:

foreach($allnews as $row){
echo "<dt class=\"row\">$row->date - $row->subject </dt>";
echo "<dd class=\"show\">$row->news</dd>";
}

Jquery

$(function(){
   $('.show').hide();
   $('.row').click(function(){
       $('.show').toggle("slow");      
   });   
});

Thank you for your time

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

对你的占有欲 2024-11-15 15:58:13
$('.row').click(function(ev){
    $(this).next(".show").toggle("slow");      
});

.next, ev.target

$('.row').click(function(ev){
    $(this).next(".show").toggle("slow");      
});

.next, ev.target

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文