以下のコードがあり、実行しようとすると、関数を呼び出すときにエラーが発生します。これは彼のハプニングなのだろうか?助けてください...
jQuery(document).ready(function($) {
//load config file
$.getScript(baseURl+"/wsj/wconf.js", function(data, textStatus, jqxhr) {
console.log(data); // it is ok
jq(); // Uncaught TypeError: undefined is not a function
//_cusApp.ini(); //Uncaught TypeError: Cannot call method 'ini' of undefined
var _cusApp = {
ini: function (inc) {
console.log('ini');
},
};
var jq = function ( ){
$(document).height(); // jquery not availble here
}
});
});