我的网络应用程序的一部分有时只显示

时间:2018-04-28 02:50:40

标签: javascript php jquery twitter-bootstrap ecmascript-6

我正在开发我的第一个用于学习目的的Web应用程序。它包含在日历中,您可以异步添加任务,编辑和删除它们。简单。

一切似乎都运行良好但是一旦我将其上传到我的主机,一位朋友报告我他看不到日历,只有标题和页脚......他说它发生在所有浏览器上,但是在智能手机它工作正常...我检查自己,我可以在我的所有浏览器上看到它(这就是为什么我没有注意到),但在智能手机上发生相同的错误!这是我朋友遇到的同样问题,但是在相反的设备上。

我联系了托管,并将PHP版本更改为我用于开发它的XAMPP上最相似的...(xampp上的5.6.32和托管上的5.6.35),但问题仍然存在上。

我也尝试更新bootstrap版本。日历是使用bootstrap,JS(带有一些ES6功能,如导入导出模块)和jquery通过PHP从数据库返回数据......没什么特别的。

你知道会发生什么吗?要查看日历,您必须登录。

如果您想记录并查看它,请使用以下假凭证:

电子邮件:test@gmail.com 传球:12345678

这是链接

http://myreminder.avanzartewebs.com/

我会把有问题的文件的头标记看看它是否能给你一个提示

<head>

    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">


    <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js" defer></script> 

    <!-- Latest compiled and minified CSS -->
    <link href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.0/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-9gVQ4dYFwwWSjIDZnLEWnxCjeSWFphJiwGPXr1jddIhOegiu1FwO5qRGvFXOdJZ4" crossorigin="anonymous">
    <!-- Latest compiled and minified JavaScript -->

    <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.0/js/bootstrap.min.js" integrity="sha384-uefMccjFJAIv6A+rW+L4AHf99KvxDjWSu1z9VI8SKNVmz4sk7buKt/6v9KI65qnm" crossorigin="anonymous" defer></script>

    <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.0/js/bootstrap.bundle.min.js" integrity="sha384-lZmvU/TzxoIQIOD9yQDEpvxp6wEU32Fy0ckUgOH4EIlMOCdR823rg4+3gWRwnX1M" crossorigin="anonymous" defer></script>

    <link rel="stylesheet" type="text/css" href="../assets/css/styles.css">

    <script src="getAndPrintDate.js" defer></script>

    <!--<script src="assets/js/crearCalendario.js" defer></script>-->
    <script src="view_crearAnioCompleto.js" type="module"></script>

    <!--<script src="assets/js/buildList.js" defer></script>-->

    <!--the scripts with type=module (which work with modules using the imports) are defer by default-->
    <script src="../controls/clickOnCell.js" type ="module" ></script>
    <script src="../controls/taskSubmit.js" type ="module" ></script>
    <script src="../controls/listButtonsClick.js" defer ></script>
    <script src="../controls/editTaskSubmit.js" type="module" ></script>
    <script src="../assets/js/fontawesome-all.js" defer ></script>







</head>

1 个答案:

答案 0 :(得分:1)

尝试下载这些内容,而不是从他们的网站链接,并尝试。我的主持人阻止了它。多数民众赞成我会尝试看到的东西。

 
<!-- Latest compiled and minified CSS -->
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.0/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-9gVQ4dYFwwWSjIDZnLEWnxCjeSWFphJiwGPXr1jddIhOegiu1FwO5qRGvFXOdJZ4" crossorigin="anonymous">
<!-- Latest compiled and minified JavaScript -->

<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.0/js/bootstrap.min.js" integrity="sha384-uefMccjFJAIv6A+rW+L4AHf99KvxDjWSu1z9VI8SKNVmz4sk7buKt/6v9KI65qnm" crossorigin="anonymous" defer></script>

<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.0/js/bootstrap.bundle.min.js" integrity="sha384-lZmvU/TzxoIQIOD9yQDEpvxp6wEU32Fy0ckUgOH4EIlMOCdR823rg4+3gWRwnX1M" crossorigin="anonymous" defer></script>