我正在尝试在网址具有特定主题标签的情况下打开模块。但是,当我在网址中添加井号标签时,似乎什么也没发生。任何帮助将不胜感激。代码如下:

<div id="overlay">
     <div class="howlModal">
          <iframe width="300" height="315" src="https://www.youtube.com/embed/UP34u6rdscs" frameborder="0" allowfullscreen></iframe>
     </div>
</div>

<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>

<script>
$(document).ready(function(){
    $('.howlModal').hide();

    var hash = window.location.hash.substr(1);
    switch(hash) {
    case '#howl':
        $('howlModal').show();
        break;
    }
});
</script>

最佳答案

请尝试这个

$(document).ready(function(){
    $('.howlModal').hide();

    var hash = window.location.hash.substr(1);
    switch(hash) {
    case '#howl':
        $('.howlModal').show();
        break;
    }
});


$('。howlModal')。show();不是$('howlModal')。show();

09-19 21:45