感谢您阅读本文。
我正在尝试使用这些行来加载打开手风琴菜单项的页面(根据哈希来自外部链接),但它无效。
我正在使用:
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>
再次感谢,一切顺利!