Jquery没有在网站上工作

时间:2016-05-19 18:48:24

标签: javascript jquery node.js heroku mean-stack

我已经在heroku上部署了我的nodejs应用程序。该应用程序已成功部署。当我加载网站时,它加载正常。我检查了网络调用,并在网站上加载了Jquery,但jQuery在我的网站上无法正常运行。一旦jquery准备好,就不会出现警告框。加载jquery时不会出现应该出现的日志。我不知道为什么会这样。以下是代码:

pruebaArray.push({foo[i]: bar});

该应用程序运行良好,jquery在本地主机上运行良好。

2 个答案:

答案 0 :(得分:0)

你的代码一团糟。头部的额外结束标记,脚本没有结束标记。更改最终L

答案 1 :(得分:0)

试试这个:

<head>
    <title>
        <%= title %>
    </title>
    <link rel='stylesheet' href='/stylesheets/style.css' />
    <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js"></script>

</head>

<body>
    <h1><%= title %></h1>
    <p>Welcome to
        <%= title %>
    </p>


    <script type="text/javascript">
        $(document).on("pageload", function() {
            alert("pageload event fired!");
        });

        $(document).on("ready", function() {
            alert("page ready event fired!");
            console.log("page ready");
        });
        jQuery(document).ready(function() {
            console.log("ready");
        });
    </script>
</body>
  

</head>更新为</script>

     

已删除language =“javascript”