1

我正在使用一些 jQuery 在此页面上制作标签:http: //johandahl.com/wp/malmocityfastigheter/ekonomi/

但是,他们不在 Internet Explorer 6-7 中工作。选项卡区域不会隐藏,只是相互堆叠。任何想法这里可能有什么问题?

这是我的 jQuery 代码的样子:

/* TABS */
jQuery(document).ready(function($){

$('ul.tabs').each(function(){
// For each set of tabs, we want to keep track of
// which tab is active and it's associated content
var $active, $content, $links = $(this).find('a');

// Use the first link as the initial active tab
$active = $links.first().addClass('active');
$content = $($active.attr('href'));

// Hide the remaining content
$links.not(':first').each(function () {
$($(this).attr('href')).hide();
});

// Bind the click event handler
$(this).on('click', 'a', function(e){
// Make the old tab inactive.
$active.removeClass('active');
$content.hide();

// Update the variables with the new link and content
$active = $(this);
$content = $($(this).attr('href'));

// Make the tab active.
$active.addClass('active');
$content.show();

// Prevent the anchor's default click action
e.preventDefault();
});
});
});

这是一个 html 示例:

            <ul class='tabs'>
                <li><a href='#beskrivning'>Om adressen</a></li>             
                <li><a href='#aktuellt'>Aktuell information</a></li>
            </ul>

        <div class="entry-about">           
            <div id='beskrivning'>

            </div>


            <div id='aktuellt'>

            </div>


        </div>

例如,比较 IE 和 Chrome 可以看出,在 Chrome 中,“display: block;”和 display: none; 的内联样式 " 已正确添加到我的选项卡式区域。但在 IE 开发人员工具中,没有添加此类样式 - 但我的 jQuery 中也没有错误。想法??????

4

1 回答 1

0

好的,我设法找到了问题所在。如果有人好奇,那是与modernizr.js 的某种冲突。如果没有modernizr,我的页面似乎可以正常呈现,所以我正在删除它。

于 2012-05-22T12:03:40.523 回答