我在酒店预订栏的wordpress页面添加了一个php include。预订栏现在隐藏了我的菜单下拉项目
以下是包含预订栏的测试页:http://www.claridge.com/test/
这是一个没有条形图的页面,因此您可以看到下拉列表:http://www.claridge.com/rooms/
我尝试设置z-index,但这不起作用。
任何帮助将不胜感激!
答案 0 :(得分:0)
您的测试页上有很多错误,该菜单是由脚本
运行的所以有些事情是错的,那么它就不会运行
修正以下错误或在您自己的调试控制台上查看
Failed to load resource: the server responded with a status of 404 (Not Found) http://www.claridge.com/resources/demos/style.css
Uncaught TypeError: Cannot read property 'msie' of undefined jquery.fancybox.js?ver=1.0:4
Uncaught TypeError: Cannot set property 'media' of undefined jquery.fancybox-media.js:39
Uncaught TypeError: Cannot set property 'thumbs' of undefined jquery.fancybox-thumbs.js:26
Uncaught TypeError: undefined is not a function jquery.fitvids.js?ver=1.0:78
Uncaught TypeError: Cannot read property 'msie' of undefined superfish.js?ver=1.0:63
Failed to load resource: the server responded with a status of 404 (Not Found) http://www.claridge.com/resources/demos/style.css
对于您的脚本错误,请尝试删除此行
<script>
$(function() {
$( "#datepicker" ).datepicker();
});
</script>
您需要使用jQuery而不是$
同时添加alert();
如果这样做,那么你的代码应该正在运行
您还包括许多版本的jQuery
答案 1 :(得分:0)
首先,检查Validator results。您将看到至少有31个错误(它会在此时停止搜索)。现在,您将在第245和246行中看到您正在关闭</body>
和</html>
标签,但您的页面几乎没有开始。修复这些问题,它会正常工作,基本上你不会加载脚本,因为你过早地结束了你的页面