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 如何判断是不是有上传文件的主要内容,如果未能解决你的问题,请参考以下文章