对于console输出:xxx is not defined or is not a function的解析

1、如果console输出信息为“m is not defined”:

     可能的问题是:m这个对象不存在,或者在用类或者id引用这个对象的时候,类名或者id名写错了。直白点就是要么该对象不存在, 要么是没有正确引用到该对象

2、要是console输出信息是“ nnn is not a function ”,
   但是在别的地方对nnn()的引用却是成功的,这有可能是在引用这个函数的时候,写函数的参数没有写对,比如:
   定义函数:nnn(m,b,fuction(){}),定义函数ff(){};
   引用函数的时候写成nnn(1,ff(){});   这时候console就会报错,“nnn is not a function”
   正常引用是这样的:nnn(1,2,ff(){});


3、html中有时候不能加载函数:console会输出mmm is not a function

       例如声明函数式

function(node){
		var node_id = node.id;
		var activ_id = node_id.substr(6,node_id.length-6);
		var url = globalConfig.pre_url + "/wxwall_api/activity/handle_activity.php";
	        var data = {"user_id" : user_id,"activity_id":activ_id, "status" : "2" };
		request(url,data,function(response){
			alert(response.msg);
			location.reload();
		});
}	

    就会报上面的问题

   如果改成函数表达式就没有问题:

handle_activity = function(node){
		var node_id = node.id;
		var activ_id = node_id.substr(6,node_id.length-6);
		var url = globalConfig.pre_url + "/wxwall_api/activity/handle_activity.php";
	        var data = {"user_id" : user_id,"activity_id":activ_id, "status" : "2" };
		request(url,data,function(response){
			alert(response.msg);
			location.reload();
		});
}



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值