在web开发中使用jQuery进行前端开发遇到这么个问题,纠结了很久终于解决了,下面说一下解决方法。大家可以参照下面几种排查的方法。1.首先检查是否引用jQuery的库。2.页面如果使用的iframe的方式嵌套的页面检查上层页面是否也引用了jQuery类库和下层页面造成了重复引用。3.是否引用了其他...
分类:
Web程序 时间:
2015-09-09 09:45:48
阅读次数:
136
报错:Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: '-[UIViewController _loadViewFromNibNamed:bundle:] loaded the...
分类:
其他好文 时间:
2015-09-08 15:19:19
阅读次数:
170
今天遇到这个问题,程序崩溃了……日志如下:-[NSNull intValue]: unrecognized selector sent to instance 0x375c9860*** Terminating app due to uncaught exception 'NSInvalidArgu...
分类:
其他好文 时间:
2015-09-06 23:02:39
阅读次数:
386
/*ie map()方法*/ if(!Array.prototype.map){Array.prototype.map=function(callback,thisArg){var T,A,k;if(this==null){throw new TypeError(" this is null ...
分类:
其他好文 时间:
2015-09-06 15:55:09
阅读次数:
151
对元素的操作和事件的绑定需要等待一个合适的时机,可以看下面的例子: 1-1 click me. 如果这样,还没有等待元素加载完就绑定事件, 浏览器Console中会报错: TypeError: document.getElementById(...) is null 更改一下时机,...
分类:
编程语言 时间:
2015-09-01 16:47:41
阅读次数:
223
学习NSNotification时遇到了这个问题,错误日志如下:2015-08-28 17:47:24.617 NSNotificationDemo[7158:786614] *** Terminating app due to uncaught exception 'NSInternalIncon...
分类:
其他好文 时间:
2015-08-28 19:42:26
阅读次数:
166
PHP Fatal error: Uncaught exception ‘ErrorException‘ with message ‘proc_open(): fork failed - Cannot allocate memory‘ in phar 原因由于虚拟机分配的内存太少,而导致没有可用内存打开文件 free -m
total...
分类:
其他好文 时间:
2015-08-26 14:07:38
阅读次数:
1187
在android4.2以前,注入步骤如下:webview.getSetting().setJavaScriptEnable(true);class JsObject { public String toString() { return "injectedObject"; } } webVie...
分类:
移动开发 时间:
2015-08-20 23:51:46
阅读次数:
287
在我的jsp页面上有这些js代码:
//加载数据
$(document).ready(function() {
var param={};
param.page=3;
param.size=10;
$.post(home+"/user/queryAllInfo",param,
function(result)
{
if(result !=n...
分类:
Web程序 时间:
2015-08-19 13:27:06
阅读次数:
584
1.[AppModel copyWithZone:]: unrecognized selector sent to instance 0x7ffda9f4cf70
*** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[AppModel copyWithZone:]: unrec...
分类:
移动开发 时间:
2015-08-18 22:45:51
阅读次数:
225