我正在使用一些jQuery在此页面上制作标签: http://johandahl.com/wp/malmocityfastigheter/ekonomi/
但是,他们没有在互联网浏览器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 Developer Tools中,没有添加这样的样式 - 但我的jQuery中也没有错误。想法?????
答案 0 :(得分:0)
好的,我设法找到了什么问题。如果有人好奇,那就与modernizr.js发生了某种冲突。我的页面似乎在没有现代化的情况下正确呈现,因此我将其删除。