我在http://www.idataresearch.com上有一个下拉菜单,它会在文档加载完成时显示,以避免在加载页面时出现没有 css/js 问题的内容。这似乎在除 Internet Explorer 之外的所有浏览器中都运行良好。很多时候菜单根本不显示,我必须刷新页面才能让它工作。任何帮助将不胜感激。
编辑:
这是不工作的文档就绪功能(我已经把它改回原来的样子,因为它实际上让事情变得更糟,因为有时菜单会卡在打开状态):
jQuery(document).ready(function() {
ddsmoothmenu.init({
mainmenuid: "smoothmenu1", //menu DIV id
orientation: 'h', //Horizontal or vertical menu: Set to "h" or "v"
classname: 'ddsmoothmenu', //class added to menu's outer DIV
//customtheme: ["#1c5a80", "#18374a"],
contentsource: "markup" //"markup" or ["container_id", "path_to_menu_file"]
})
jQuery('#smoothmenu1').show();
});