Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个脚本,可以根据标题制作一些文本幻灯片。但是,每次我在 IE 中刷新页面时,页面标题都会切换顺序。它在 Firefox 中运行良好。我用相关代码做了一个jsbin。
http://jsbin.com/ihopoq/1/
我换了行:
menu.wrap('<a href="#"></a>').parent().appendTo(submenu);
和
menu = menu.wrap('<a href="#"></a>'); menu.each(function( index ) { $(this).parent().appendTo(submenu); });
我认为父函数不维护 IE 中元素的顺序。