我的js文件旁边的标题中包含了jquery,格式正确,但是似乎并不想工作。
这是需要js文件的storepage.php文件的头。
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="Styles/CSS/design.css">
<title>GET YOUR KEYS HERE</title>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
<script type="text/javascript" src="Scripts/storePage.js"></script>
<script type="text/javascript" src="Scripts/addTag.js"></script>
</head>
<body>
这是javascript文件的开头
function tester() {
console.log("Checking document status...");
}
console.log("Checking document status...");
$(document).ready(function() {
控制台中什么都没有显示,所以我现在有点迷茫。
答案 0 :(得分:0)
您应该在 document.ready()
方法内调用函数,以使其在文档加载后运行:
function tester() {
console.log("Checking document status...")
}
$(document).ready(function(){
tester()
});
答案 1 :(得分:0)
为什么控制台中什么也没显示?
tester()
函数。您需要的是,编写像这样的真正文档就绪语法,然后调用tester()
函数
$(document).ready(function(){
tester();
console.log('testing'); //call the console log manually when the document ready.
});