-1
なぜこのコードはエラーを返すのですか?あなたは関数式の前に;
をはめ込むことを忘れこのコードでエラーが発生するのはなぜですか?
var old_newOther = newOther;
consoleParse = function(e){
old_newOther(e);
}
(function($) {
newOther = function(e){
for(var k in e){
if(isset(e[k].onMouseDown)){
TalkWithNPC(e[k].id);
}
}
return e;
}})(jQuery);
VM413:29 Uncaught TypeError: (intermediate value)(...) is not a function(…)
これは、 と同じ問題です。http://stackoverflow.com/questions/36278393/typeerror-intermediate-value-is-undefined –