uploadifive 如何判断是不是有上传文件

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了uploadifive 如何判断是不是有上传文件相关的知识,希望对你有一定的参考价值。

参考技术A <!DOCTYPE html>

<html>
<head>
<meta name="viewport" content="width=device-width" />
<title>Index</title>
<script src="~/Scripts/jquery-1.10.2.min.js"></script>
<script src="~/Content/uploadifive/jquery.uploadifive.min.js"></script>
<link href="~/Content/uploadifive/uploadifive.css" rel="stylesheet" />
</head>
<body>
<div id="queue"></div>
<input type="file" id="file_upload" name="file_upload" />

<script>
$(function ()
$('#file_upload').uploadifive(
'auto': true,
'queueID': 'queue',
'buttonText': '上传文件',
'uploadScript': '/File/UploadFile',
'onUploadComplete': function (file, data)
if (data)
alert('上传成功')
else
alert('上传失败' + rspdesc);


);
);
</script>
</body>
</html>本回答被提问者采纳

以上是关于uploadifive 如何判断是不是有上传文件的主要内容,如果未能解决你的问题,请参考以下文章

uploadifive上传文件

uploadifive.js怎么去掉进度条

uploadifive struts2实现图片上传

java向SFTP服务器上传文件,如何判断服务器上的文件夹是不是存在?

java图像上传中如何判断是不是是jpg格式

在.NET中用JS如何判断上传图片是不是合格?