我有一个带有一些php代码的php文件,并尝试运行一些简单的jquery(在脚本标记内)但是当我运行页面时,jquery不起作用。在控制台中我收到此消息ReferenceError:无法找到变量:jQuery和此消息无法找到变量:$
这是我的代码。
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function) {
$("#cookie-law").slideDown( "slow" , function() {
});
});
</script>
<header id="header">
<div id="cookie-law">
<div class="alert alert-info" role="alert" style="margin-bottom:-10px;">This site runs cookies. By using this website, you agree to our use of cookies. <span class="accept-button"><a href="#" onclick=
"removeMe()">Accept</a></span> </div></div>
</header>
&#13;
php代码如下,文件是.php文件。