如果输入字段已更改,我想用动态nums设置 child.setInputType( InputType.TYPE_CLASS_TEXT)
。
我的代码:
maxFileCount
krajee fileinput:
<input value="" name="check_nums" class="check_nums">
答案 0 :(得分:0)
希望这会有所帮助:
首先更改变量声明位置,这是声明初始阶段的正确方法。
$(document).on('ready', function() {
var check_nums = $(".check_nums").val();
$('#file-th').fileinput({
showUploadedThumbs: false,
language: 'th',
uploadAsync: false,
maxFileCount: check_nums,
resizePreference: 'height',
resizeImage: true,
overwriteInitial: false,
validateInitialCount: true,
showUpload: false,
allowedFileExtensions: ['jpg', 'png', 'jpeg'],
previewSettings: {
image: {width: "auto", height: "100px"},
object: {width: "213px", height: "160px"},
},
layoutTemplates: {
actions: '<div class="file-actions">\n' +
' <div class="file-footer-buttons">\n' +
' {delete}' +
' </div>\n' +
'</div>',
}
}).on("filebatchselected", function(event, files) {
});
});
然后使用输入框绑定更改事件,并将该输入值指定为文件输入的最大限制。
$(".check_nums").change(function(){
$("#file-th").fileinput('maxFileCount',$(this).val());
});