因此,我将所需的每个文件都链接到 index.html 文件中:
<script src="jquery.js"></script>
<script src="notify.js"></script>
<script src="script.js"></script>
我在“notify.js”中创建了一个对象:
var notify = {
newNotification : function(text) {
}
}
脚本.js:
alert(notify.newNotification);
当我尝试访问“script.js”中的“通知”对象时,它工作得很好。但我想使用 jquery,所以我将 $(document).ready() 添加到两个文件中,如下所示:
通知.js
$(document).ready (
function() {
var notify = {
newNotification : function(text) {
}
}
}
)
脚本.js:
$(document).ready (
function() {
alert(notify.newNotification);
}
)
在我添加之后,它提出了notify is not defined.What's wrong?谁能解释为什么它不起作用?