选择默认类为“有效”以打开iframe

时间:2016-01-13 19:56:58

标签: javascript css iframe

每次用户点击按钮时,我都会使用这段代码打开不同的iframe。但是我注意到,当有人加载页面时,没有任何“默认”iframe打开,因此iframe看起来是黑色和空的。有没有办法可以编辑代码,让一个类默认处于活动状态?

hasNext()

1 个答案:

答案 0 :(得分:0)

您可以尝试这样的操作,它会尝试在页面加载时显示您的第一个链接。我无法测试,因为我没有你所有的代码,但希望这接近你所寻找的。

  $(document).ready(function() {

    showLink($('.link').first());

    // Catch all clicks on a link with the class 'link'
    $('.link').click(function(e) {
        e.preventDefault();
        showLink($(this));    
    });

    function showLink(ele){

          // Get the div to be shown:
          var content = ele.attr('rel');

          // Remove any active classes:
          $('.active').removeClass('active');

          // Add the 'active' class to this link:
          ele.addClass('active');

          // Hide all the content:
          $('.content').hide();

          // Show the requested content:
          $('#' + content).show();
    }
});