문제

I use uploadify plugin for uploading files.

But when I use

jQuery('#video_thumb1').uploadify('settings','uploadLimit','4');

to change the limit count, I get an error.

I cannot resolve this problem, whats this error?

도움이 되었습니까?

해결책

Try this

$("#file_upload_1").uploadify({
    height:30,
    swf: 'http://www.uploadify.com/uploadify/uploadify.swf',
    uploader:'http://www.uploadify.com/uploadify/uploadify.php',
    width : 120,
    uploadLimit: 4
});

DEMO

다른 팁

Try something like this:

jQuery('#video_thumb1').uploadify({
   'uploadLimit' : '4' // Or change to whatever number is appropriate.
});
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top