需要帮助简化代码
好的,我在 Drupal 安装上有一个包含多个 div 的页面。我编写了一个 .js 来测试这些 div 内是否有任何信息
if ($('.accred').length) {
$('#accred').show();
}
else{
$('#accred').hide();
}
if ($('.admin-req').length) {
$('#admis').show();
}
else{
$('#admis').hide();
}
if ($('.career-opp').length) {
$('#career').show();
}
else{
$('#career').hide();
}
if ($('.co-op-diploma').length) {
$('#co_op').show();
}
else{
$('#co_op').hide();
}
if ($('.prog-out').length) {
$('#outcomes').show();
}
else{
$('#outcomes').hide();
}
if ($('.prog-struc').length) {
$('#struc').show();
}
else{
$('#struc').hide();
}
if ($('.testimonials').length) {
$('#testimon').show();
}
else{
$('#testimon').hide();
}
if ($('.transfer').length) {
$('#transfer').show();
}
else{
$('#transfer').hide();
}
if ($('.tuition').length) {
$('#tuition').show();
}
else{
$('#tuition').hide();
}
可以隐藏或显示链接,这些链接允许您单击并显示有关每个 div 的更多信息,因为除了一个 div 之外的每个 div 默认情况下都是隐藏的:
$(function(){
$('#descrip').click(function(){
$('.prog-descrip').show();
$('.accred').hide();
$('.admin-req').hide();
$('.career-opp').hide();
$('.co-op-diploma').hide();
$('.prog-out').hide();
$('.prog-struc').hide();
$('.testimonials').hide();
$('.transfer').hide();
$('.tuition').hide();
});
$('#accred').click(function(){
$('.prog-descrip').hide();
$('.accred').show();
$('.admin-req').hide();
$('.career-opp').hide();
$('.co-op-diploma').hide();
$('.prog-out').hide();
$('.prog-struc').hide();
$('.testimonials').hide();
$('.transfer').hide();
$('.tuition').hide();
});
$('#admis').click(function(){
$('.prog-descrip').hide();
$('.accred').hide();
$('.admin-req').show();
$('.career-opp').hide();
$('.co-op-diploma').hide();
$('.prog-out').hide();
$('.prog-struc').hide();
$('.testimonials').hide();
$('.transfer').hide();
$('.tuition').hide();
});
$('#career').click(function(){
$('.prog-descrip').hide();
$('.accred').hide();
$('.admin-req').hide();
$('.career-opp').show();
$('.co-op-diploma').hide();
$('.prog-out').hide();
$('.prog-struc').hide();
$('.testimonials').hide();
$('.transfer').hide();
$('.tuition').hide();
});
$('#co_op').click(function(){
$('.prog-descrip').hide();
$('.accred').hide();
$('.admin-req').hide();
$('.career-opp').hide();
$('.co-op-diploma').show();
$('.prog-out').hide();
$('.prog-struc').hide();
$('.testimonials').hide();
$('.transfer').hide();
$('.tuition').hide();
});
$('#outcomes').click(function(){
$('.prog-descrip').hide();
$('.accred').hide();
$('.admin-req').hide();
$('.career-opp').hide();
$('.co-op-diploma').hide();
$('.prog-out').show();
$('.prog-struc').hide();
$('.testimonials').hide();
$('.transfer').hide();
$('.tuition').hide();
});
$('#struc').click(function(){
$('.prog-descrip').hide();
$('.accred').hide();
$('.admin-req').hide();
$('.career-opp').hide();
$('.co-op-diploma').hide();
$('.prog-out').hide();
$('.prog-struc').show();
$('.testimonials').hide();
$('.transfer').hide();
$('.tuition').hide();
});
$('#testimon').click(function(){
$('.prog-descrip').hide();
$('.accred').hide();
$('.admin-req').hide();
$('.career-opp').hide();
$('.co-op-diploma').hide();
$('.prog-out').hide();
$('.prog-struc').hide();
$('.testimonials').show();
$('.transfer').hide();
$('.tuition').hide();
});
$('#transfer').click(function(){
$('.prog-descrip').hide();
$('.accred').hide();
$('.admin-req').hide();
$('.career-opp').hide();
$('.co-op-diploma').hide();
$('.prog-out').hide();
$('.prog-struc').hide();
$('.testimonials').hide();
$('.transfer').show();
$('.tuition').hide();
});
$('#tuition').click(function(){
$('.prog-descrip').hide();
$('.accred').hide();
$('.admin-req').hide();
$('.career-opp').hide();
$('.co-op-diploma').hide();
$('.prog-out').hide();
$('.prog-struc').hide();
$('.testimonials').hide();
$('.transfer').hide();
$('.tuition').show();
});
});
然而,客户不喜欢这种方式。他想根据是否有更多 div 来填充。
所以,我的问题是:如何填充所有 div 和代码以根据它们使用 js 或 jquery 动态单击的链接来显示/隐藏 div?我不是一个 js 或 jquery 人,所以请原谅我天真的问题,如果它实际上是天真的。谢谢!
编辑
请那些已回复的人重新阅读我的问题。动态填充信息。换句话说,客户端不想要硬编码的 div。
Okay, I have a page on a Drupal install that has multiple divs. I wrote a .js to test to see if there was any information inside those divs
if ($('.accred').length) {
$('#accred').show();
}
else{
$('#accred').hide();
}
if ($('.admin-req').length) {
$('#admis').show();
}
else{
$('#admis').hide();
}
if ($('.career-opp').length) {
$('#career').show();
}
else{
$('#career').hide();
}
if ($('.co-op-diploma').length) {
$('#co_op').show();
}
else{
$('#co_op').hide();
}
if ($('.prog-out').length) {
$('#outcomes').show();
}
else{
$('#outcomes').hide();
}
if ($('.prog-struc').length) {
$('#struc').show();
}
else{
$('#struc').hide();
}
if ($('.testimonials').length) {
$('#testimon').show();
}
else{
$('#testimon').hide();
}
if ($('.transfer').length) {
$('#transfer').show();
}
else{
$('#transfer').hide();
}
if ($('.tuition').length) {
$('#tuition').show();
}
else{
$('#tuition').hide();
}
to hide or show the links that would allow you to click and show more information about each one, because each div except for one is hidden by default:
$(function(){
$('#descrip').click(function(){
$('.prog-descrip').show();
$('.accred').hide();
$('.admin-req').hide();
$('.career-opp').hide();
$('.co-op-diploma').hide();
$('.prog-out').hide();
$('.prog-struc').hide();
$('.testimonials').hide();
$('.transfer').hide();
$('.tuition').hide();
});
$('#accred').click(function(){
$('.prog-descrip').hide();
$('.accred').show();
$('.admin-req').hide();
$('.career-opp').hide();
$('.co-op-diploma').hide();
$('.prog-out').hide();
$('.prog-struc').hide();
$('.testimonials').hide();
$('.transfer').hide();
$('.tuition').hide();
});
$('#admis').click(function(){
$('.prog-descrip').hide();
$('.accred').hide();
$('.admin-req').show();
$('.career-opp').hide();
$('.co-op-diploma').hide();
$('.prog-out').hide();
$('.prog-struc').hide();
$('.testimonials').hide();
$('.transfer').hide();
$('.tuition').hide();
});
$('#career').click(function(){
$('.prog-descrip').hide();
$('.accred').hide();
$('.admin-req').hide();
$('.career-opp').show();
$('.co-op-diploma').hide();
$('.prog-out').hide();
$('.prog-struc').hide();
$('.testimonials').hide();
$('.transfer').hide();
$('.tuition').hide();
});
$('#co_op').click(function(){
$('.prog-descrip').hide();
$('.accred').hide();
$('.admin-req').hide();
$('.career-opp').hide();
$('.co-op-diploma').show();
$('.prog-out').hide();
$('.prog-struc').hide();
$('.testimonials').hide();
$('.transfer').hide();
$('.tuition').hide();
});
$('#outcomes').click(function(){
$('.prog-descrip').hide();
$('.accred').hide();
$('.admin-req').hide();
$('.career-opp').hide();
$('.co-op-diploma').hide();
$('.prog-out').show();
$('.prog-struc').hide();
$('.testimonials').hide();
$('.transfer').hide();
$('.tuition').hide();
});
$('#struc').click(function(){
$('.prog-descrip').hide();
$('.accred').hide();
$('.admin-req').hide();
$('.career-opp').hide();
$('.co-op-diploma').hide();
$('.prog-out').hide();
$('.prog-struc').show();
$('.testimonials').hide();
$('.transfer').hide();
$('.tuition').hide();
});
$('#testimon').click(function(){
$('.prog-descrip').hide();
$('.accred').hide();
$('.admin-req').hide();
$('.career-opp').hide();
$('.co-op-diploma').hide();
$('.prog-out').hide();
$('.prog-struc').hide();
$('.testimonials').show();
$('.transfer').hide();
$('.tuition').hide();
});
$('#transfer').click(function(){
$('.prog-descrip').hide();
$('.accred').hide();
$('.admin-req').hide();
$('.career-opp').hide();
$('.co-op-diploma').hide();
$('.prog-out').hide();
$('.prog-struc').hide();
$('.testimonials').hide();
$('.transfer').show();
$('.tuition').hide();
});
$('#tuition').click(function(){
$('.prog-descrip').hide();
$('.accred').hide();
$('.admin-req').hide();
$('.career-opp').hide();
$('.co-op-diploma').hide();
$('.prog-out').hide();
$('.prog-struc').hide();
$('.testimonials').hide();
$('.transfer').hide();
$('.tuition').show();
});
});
The client, however, does not like this way of doing it. He wants to populate based on if there are more divs.
So, my question is this: How do I populate all of the divs and the code to show/hide divs based on which link they click dynamically using js or jquery? I am NOT a js or jquery guy, so pardon my naive question, if it is in fact naive. Thanks!
EDIT
Please re-read my question those who have replied. dynamically populating the information. In other words, the client does not want hard-coded divs.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
更好的解决方案,只需提供隐藏自己的类所需的所有类并使用 .toggle() 即可。
Better solution, just give all the classes you need to hide a class of their own and use .toggle().
好的,这就是我最终所做的。我最终为每个链接分配了 linkeddiv 的类,以及内容 div 的名称的 rel ,如下所示:
之后,我设置了一个间隔函数来测试页面的 url,并专门抓取 后面的字符有标记。这样做的目的是测试页面是否已更改,以防最终用户按下后退按钮。如果确实如此,它会自动将页面更新到正确的 div 显示
一旦完成,我只是测试了他们单击的链接,并基于此,我根据 rel 链接隐藏或显示了 div:
这正是我所实现的正在寻找。此外,它还添加了使用后退按钮的功能,而不是导致死链接 (#)。
如果你想使用 jquery,你还可以做一些有趣的淡入淡出或滑动。
希望这对某人有帮助。
Okay, so here is what I ended up doing. I ended up assigning each link the class of linkeddiv, and a rel of whatever the name of the content div was, like this:
After that, I set an interval function to test the url of the page, and specifically grab the characters after the has mark. What this did was test to see if the page had changed, in case the end-user pressed the back button. If it did, it would automatically update the page to the proper div showing
Once that was done, I just tested which link they clicked, and based on that, I hid or showed the div based on the rel link:
This achieved exactly what I was looking for. Also, it added the functionality of using the back button, instead of leading to a dead link (#).
You could also do some fun fade or slide if you wanted with the jquery.
Hope this helps someone.
第二部分可以缩短为:
The second section can be shortened to: