我正在尝试从我的内联代码中调用USER-APP.JS
的外部函数,然后我继续收到user is not defined.
当我从USER-APP.JS
内联运行代码时,它运行正常。我和我的同事找不到错误,所以我们正在寻求互联网的帮助。
是的,在运行内联代码之前正在加载USER-APP.JS
。
// INLINE
<script>
$(function() {
user.timer_start();
alert('ready');
});
</script>
// USER-APP.JS
user = {
timer_start: function() {
alert('test');
austDay = 3700;
$('#defaultCountdown').countdown({until: austDay});
}
};