如何从 DL 列表中选择任意一个元素
我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
.next
,ev.target
.next
,ev.target