84669 人が学習中
152542 人が学習中
20005 人が学習中
5487 人が学習中
7821 人が学習中
359900 人が学習中
3350 人が学習中
180660 人が学習中
48569 人が学習中
18603 人が学習中
40936 人が学習中
1549 人が学習中
1183 人が学習中
32909 人が学習中
ajaxFileUpload 插件如何在前台限制图片上传大小
光阴似箭催人老,日月如移越少年。
<script type="text/javascript"> function UploadCompleteClient(sender, args) { var filesize = args.get_fileSize(); var fileId = args.get_fileId(); var status = document.getElementById('AjaxFileUpload1_FileItemStatus_' + fileId); if (parseInt(filesize) > fileSizeLimit) { alert("file exceeds file size limit"); if (status.innerText) { status.innerText = " file exceeds file size limit "; } if (status.textContent) { status.textContent = " file exceeds file size limit "; } } } </script>
光阴似箭催人老,日月如移越少年。