jQuery手风琴 – 在IE中运行,而不是FF
我在products.html页面中创建了一个简单的手风琴:
Products
这在IE,FF和Chrome中出现并起作用。 但是,当页面被导入/加载到我的index.html页面(进入DIV)时,手风琴function/在IE中按预期显示,但始终在FF中展开。
Index.html页面:
$(document).ready(function(){ $('nav li ul').hide().removeClass('fallback'); $('nav li').hover( function () { $('ul', this).stop().slideDown(300); }, function () { $('ul', this).stop().slideUp(300); } ); }); function getPageContent(a) { $.get(a, processContent, 'html').fail(function() { alert('There is a problem loading a resource. Please re-try');}); } function processContent(file_data) { $("#PageContent").html(file_data); }