我在项目中使用File input,但我没有使用插件上传按钮,我正在使用自己的表单提交按钮。
如何以我自己的形式整合File Input的按钮?
$("#images").fileinput({
language: "tr",
uploadAsync: false,
allowedFileExtensions: ["jpg", "png", "gif", "jpeg"],
showBrowse: false,
browseOnZoneClick: true,
uploadUrl: "https://example.com/upload.php?v=1",
elErrorContainer: '#kv-error-2',
showUpload: false,
}).on('filebatchpreupload', function (event, data, id, index) {
$('#kv-success-2').html('<h4>Upload Status</h4><ul></ul>').hide();
});