.tpl文件无法在jQuery中加载文档

时间:2016-10-27 11:52:11

标签: jquery

我尝试在.tpl文件中加载j Query如下代码

文件名html_header.tpl

<head>
<script type="text/javascript">
        $(document).ready(function () {
            alert("No where...");
        });
</script>
</head>

它不起作用请帮助我。

1 个答案:

答案 0 :(得分:0)

您忘了包含图书馆。试试这个:

<head>
<script src="https://code.jquery.com/jquery-3.1.1.min.js"></script>
<script type="text/javascript">
        $(document).ready(function () {
            alert("No where...");
        });
</script>
</head>