我使用uploadify上传图片。上传按钮是相机图像(Camera.png),但选择图像时,上传成功时,上传按钮图像是另一个图像(成功.png)。
这是使用的javascript代码:
$('#form-add-post-image').uploadify({
'swf': 'uploadify/uploadify.swf',
'uploader': 'uploadify/uploadify.php',
'buttonImage': 'uploadify/camera.png',
'width': 128,
'height': 128,
'onUploadSuccess': function(file, data, response){
$(this).uploadify('settings', 'buttonImage', 'uploadify/success.png');
}
});
但是,这不起作用,控制台会给出以下错误消息:Uncaught ReferenceError: settingValue is not defined
.
任何的想法?
什么Uncaught ReferenceError: settingValue is not defined
意思?
提前致谢