だから私は index.html ファイルに必要なすべてのファイルをリンクしています:
<script src="jquery.js"></script>
<script src="notify.js"></script>
<script src="script.js"></script>
「notify.js」でオブジェクトを作成します:
var notify = {
newNotification : function(text) {
}
}
script.js :
alert(notify.newNotification);
「script.js」の「notify」オブジェクトにアクセスしようとすると、問題なく動作しますが、jquery を使用したいので、次のように両方のファイルに $(document).ready() を追加します。
通知.js
$(document).ready (
function() {
var notify = {
newNotification : function(text) {
}
}
}
)
Script.js:
$(document).ready (
function() {
alert(notify.newNotification);
}
)
そして、それを追加した後、通知が定義されていません.何が問題なのですか? うまくいかない理由を誰か説明できますか?