触发单击页面加载以根据哈希从外部链接打开手风琴项目

时间:2016-07-07 15:37:25

标签: javascript jquery html css accordion

感谢您阅读本文。

我正在尝试使用这些行来加载打开手风琴菜单项的页面(根据哈希来自外部链接),但它无效。

我正在使用:

    if(location.hash) {
       $('a[href="#' + $(this) + '"]').trigger('click');
       });

if(location.hash) {
   $(".accordion[href$="+location.hash+"]").trigger('click');
   }); 

它还结合了另外两个脚本:1个用于手风琴,1个用于向下滚动到哈希。完整小提琴:https://jsfiddle.net/camilamss/jLjbcLpw/7/

我正在使用的外部链接:<a href="Untitled.html#agriculture">Link</a>

再次感谢,一切顺利!

0 个答案:

没有答案