标签:
这个不是什么tab的问题,而是可能有多个上传的div或者input(含有相同的name或者ID)导致的
如果有两个不同的上传按钮,那么他们的name,id要设置得不一样。
<div id=‘total‘> <input type="file" name="total_upload" id="total_upload" multiple="true" /> </div> <a href="javascript:$(‘#total_upload‘).uploadify(‘upload‘, ‘*‘)">开始上传</a> <a href="javascript:$(‘#total_upload‘).uploadify(‘cancel‘, ‘*‘)">全部取消上传</a>
uploadify上传错误:uncaught exception: call to startUpload failed原因
标签:
原文地址:http://www.cnblogs.com/Teofil/p/4311562.html