0


我正在使用以下脚本打开/关闭网页上的 div;

$(document).ready(function(){

     $(".showA").hide();
     $(".show_hideB").show();

     $('.show_hideB').click(function(){
     $(".showA").slideToggle();

     });

});

一切都很好,但问题是当我浏览 www.websitelink.com/#A 以(切换)打开锚 div #A 自动时,我无法让它工作

我已经尝试了以下,我在这里找到但没有帮助我:

if(document.location.hash) {
$('.' + document.location.hash.substring(1)).slideDown(); }

注意:我正在以更多方式使用切换 javascript,因此我正在寻找通用解决方案,而不仅仅是特定于#A div(例如;如果 url 显示:www.websitelink.com#c 它应该打开 #c等等等等)

我希望你们中的某个人为我提供解决方案!
非常感谢您提前!

4

1 回答 1

0

.在选择器中使用,它应该是#

if(document.location.hash) {
    $('#' + document.location.hash.substring(1)).slideDown();
}

或者,由于document.location.hash总是以 开头#,因此您不需要子字符串:

if(document.location.hash) {
    $(document.location.hash).slideDown();
}
于 2013-08-06T07:30:26.350 回答