在其他列表的基础上填充一个列表
好的,所以我有一个像两个 div 的结构。在左侧 div 我有一个包含 10 个问题的列表,在右侧我想填充相同的答案。单击左侧的问题 1 后,答案应显示在右侧。单击第二个问题时,应显示第二个问题的答案,并隐藏所有答案。那么在 jquery 中执行此操作的理想方法是什么? 我写了类似的东西;
$("document").ready(function() {
$("#idQ1").click(function() {
$("#ansQ1").css("display","block");
$("#ansQ1,#ansQ2,#ansQ3,#ansQ4,#ansQ5,.......#ansQ10").css("display","none");
})
})
但我认为这段代码不好。有人可以指导如何使用循环或函数来做到这一点
ok, so I have a structure like two divs. On the left side div I have a list of 10 questions, and on the right hand side I want to populate the answers for the same. On clicking the question1 on the left hand side the answer should display in the right hand side. On clicking the second question the answer for second should display, hiding all the answers. so what would be the ideal way to do it in jquery.
I wrote something like;
$("document").ready(function() {
$("#idQ1").click(function() {
$("#ansQ1").css("display","block");
$("#ansQ1,#ansQ2,#ansQ3,#ansQ4,#ansQ5,.......#ansQ10").css("display","none");
})
})
but I dont think this code is good. can somebody guide as to how you would do this using loops or functions
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
我会将 CSS 类
.question
和.answer
添加到适当的元素。您可以执行以下操作:HTML,
问题、
答案
I'd add CSS classess
.question
and.answer
to the appropriate elements. Than you can do something like:HTML,
questions,
answers
其他答案都是使用类来编写有效的脚本,为此
我在这里创建了自己的示例,该示例使用锚标记来标记问题,并将
href
设置为答案元素的 id。示例如下: http://jsfiddle.net/pxfunc/zEwUB/
HTML:
jQuery:
The other answers are dead on with using classes to write an efficient script for this
I've created my own example here that uses anchor tags for the questions with an
href
set to the id of an answer element.example here: http://jsfiddle.net/pxfunc/zEwUB/
HTML:
jQuery:
使用类选择器而不是 id
HTML,
问题、
答案
Use class selector instead of id
HTML,
questions,
answers
您可以使用
classes
并选择它们,或者如果您愿意,您可以使用
^=
开始。http://api.jquery.com/attribute-starts-with-selector/
you can use
classes
and select themor if you want you can use
^=
is for starts with.http://api.jquery.com/attribute-starts-with-selector/