当我在移动设备上打开网站时,它不会显示index.html但是会显示一些奇怪的菜单

时间:2016-02-08 18:03:47

标签: javascript ajax

当我通过移动设备(手机)访问该页面时,它会显示可供选择的菜单,而不是我希望页面立即加载索引。

(如果你通过电话查看,你会明白我的意思)

链接:www.eufrazia.sk/sitex/

我希望在这里加载页面" www.eufrazia.sk/sitex/home"通过电话访问时

我不确定下面的代码是否有助于理解,但我认为这段代码与它有关。

(function($){
window.FJSCore =
{
        local:location.protocol == "file:",
        basepath:location.pathname.slice(0, location.pathname.lastIndexOf('/') + 1),
        defState:'',
        defStateMobileText:'Úvod',
        emptyNavigationText:'-- Sekcie --',
        ajaxFolder:"/ajax/",
        indexFile:'index.html',
        modules:{},
        mobileFolowLinks:false,
}

1 个答案:

答案 0 :(得分:0)

它看起来不像媒体查询,因为菜单仅在使用Phone的用户代理导航时出现,而不是在更改浏览器窗口大小时出现。

我建议尝试从索引文件中的<head>元素中删除device.js文件,然后查看是否抛出任何错误。这应该可以解决问题。

<script type="text/javascript" src="js/jquery.js"></script>

<!-- REMOVE THIS -->
<script type="text/javascript" src="js/device.js"></script>	

<script type="text/javascript" src="js/bootstrap.js"></script>	
<script type="text/javascript" src="js/core.js"></script><script src="js/history.js?redirect=true&amp;basepath=/sitex/" type="text/javascript"></script>
<script type="text/javascript" src="js/script.js"></script><script type="text/javascript" src="js/jquery.easing.js"></script><script type="text/javascript" src="js/TMForm.js"></script><script type="text/javascript" src="js/randomLettersGenerator.js"></script><script type="text/javascript" src="js/spin.min.js"></script><style type="text/css"></style><script type="text/javascript" src="js/jquery.touchSwipe.min.js"></script><script type="text/javascript" src="js/tmMultimediaGallery.js"></script>	

希望这有帮助