感谢您上周的所有帮助。
我还有两个要求。
你能帮我把我们接受的哑剧类型。即.PDF、.AI、.IDD
我们可以将已上传到输入字段的 mime 类型作为文本传递吗?
我在下面附上了我们正在使用的代码。
非常感谢
达蒙
<script>
$(function(){
$("#progressbar").progressbar({
value: 0
});
$("#myfile").change(function() {
if (this.value) {
$('#localSpinner').show();
filepicker.uploadFile(this, function(data) {
$('#localResult').val(data.url);
$('#localSpinner').hide();
}, function(error) {}, function(progress) {
$('#progressbar').progressbar('value', progress),
$('#progressbar_text').progressbar('value', progress).text(progress+"%")
});
}
});
});
</script>