我正在尝试实现一个 jQuery 函数来在网站上上传文件。该脚本使用“plupload”。
不幸的是,在后台运行了另一个 jQuery 函数。
<script type="text/javascript">
jQuery(function ($) {
$.supersized({
// Functionality
slide_interval: ss_interval, // Length between transitions
transition: 1, // 0-None, 1-Fade, 2-Slide Top, 3-Slide Right, 4-Slide Bottom, 5-Slide Left, 6-Carousel Right, 7-Carousel Left or ss_transitionType
transition_speed: ss_transitionSpeed, // Speed of transition
// Slides
slides: [ // Slideshow Images
{
image: 'images/gallery/1.jpg',
title: 'Upload and share your music with other...',
title2: 'Music'
}, {
image: 'images/gallery/2.jpg',
title: 'Share your work online and access your documents from anywhere. ',
title2: 'Documents'
}, {
image: 'images/gallery/3.jpg',
title: 'Show off your favorite photos and videos to the world.',
title2: 'Photography'
}, {
image: 'images/gallery/4.jpg',
title: 'Let the world watch your videos, or share them privately.',
title2: 'Video'
}, {
image: 'images/gallery/8.jpg',
title: 'Free file storage service. Share files with your friends.',
title2: 'Upload and Share'
}]
});
$("#uploader").plupload({
// General settings
runtimes: 'flash,html5,browserplus,silverlight,gears,html4',
url: 'upload.php',
max_file_size: '1000mb',
max_file_count: 20, // user can add no more then 20 files at a time
chunk_size: '1mb',
unique_names: true,
multiple_queues: true,
// Resize images on clientside if we can
resize: {
width: 320,
height: 240,
quality: 90
},
// Rename files by clicking on their titles
rename: true,
// Sort files
sortable: true,
// Specify what files to browse for
filters: [{
title: "Image files",
extensions: "jpg,gif,png"
}, {
title: "Zip files",
extensions: "zip,avi"
}],
// Flash settings
flash_swf_url: 'js/upload/plupload.flash.swf',
// Silverlight settings
silverlight_xap_url: 'js/upload/plupload.silverlight.xap'
});
// Client side form validation
$('form').submit(function (e) {
var uploader = $('#uploader').plupload('getUploader');
// Files in queue upload them first
if (uploader.files.length > 0) {
// When all files are uploaded submit form
uploader.bind('StateChanged', function () {
if (uploader.files.length === (uploader.total.uploaded + uploader.total.failed)) {
$('form')[0].submit();
}
});
uploader.start();
} else alert('You must at least upload one file.');
return false;
});
});
</script>
问题是:没有任何效果,页面什么也没有返回。但如果我删除这部分(见下文)上传的功能有效:
$.supersized({
// ...
});
请问有人可以帮我吗?我在控制台中收到以下错误:
Uncaught TypeError: Object [object Object] has no method 'pajinate' jScript.js:134
未捕获的类型错误:对象函数 (a,b){return new d.fn.init(a,b,g)} 没有方法“超大” jquery.min.js:16