主题: 我在上传图片时选择本地图片时总是提示错误 |
作者: DeepSoul, 发布日期: 2010-03-15 17:58:47, 浏览数: 7514 |
我在上传图片时选择本地图片时总是提示如下错误 行: 1103错误: 拒绝访问。 调试代码为 getIframeDoc : function(iframe) { return iframe.contentDocument || iframe.contentWindow.document; <--就是这句报错 }, 注:我已经给上传目录添加 Everyone 的完全控制权限 请问如果解决,谢谢! 跟踪发现 parseJson : function (text) { // the code of parseJson from http://www.json.org/ var cx = /[\u0000\u00ad\u0600-\u0604\u070f\u17b4\u17b5\u200c-\u200f\u2028-\u202f\u2060-\u206f\ufeff\ufff0-\uffff]/g; cx.lastIndex = 0; if (cx.test(text)) { text = text.replace(cx, function (a) { return '\\u' + ('0000' + a.charCodeAt(0).toString(16)).slice(-4); }); } if (/^[\],:{}\s]*$/. test(text.replace(/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g, '@'). replace(/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g, ']'). replace(/(?:^|:|,)(?:\s*\[)+/g, ''))) { return eval('(' + text + ')'); } throw 'JSON parse error'; <---此处报错 “例外被抛出且未被接住” }, |
作者: DeepSoul, 发布日期: 2010-03-16 10:38:15 |
再次补充,我用的是IE8
|
回复 |
作者: 冰水咖啡[30], 发布日期: 2010-03-17 15:07:07 |
好像只带有一个PHP的上传本地组件,ASP的没有上传组件 |
回复 |
作者: 烈冰, 发布日期: 2010-05-07 16:53:42 |
改成
if (/^[\],:{}\s()\w'/]*$/. test(text.replace(/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g, '@'). replace(/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g, ']'). replace(/(?:^|:|,)(?:\s*\[)+/g, ''))) { return eval('(' + text + ')'); } |
回复 |