我尝试在.tpl文件中加载j Query如下代码
文件名html_header.tpl
<head>
<script type="text/javascript">
$(document).ready(function () {
alert("No where...");
});
</script>
</head>
它不起作用请帮助我。
答案 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>