使用表单自己的提交按钮[Bootstrap文件输入]

时间:2018-06-16 21:42:06

标签: jquery twitter-bootstrap input

我在项目中使用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(); 
    });

0 个答案:

没有答案