1. 程式人生 > >jq簡單仿上傳文件

jq簡單仿上傳文件

上傳 cnblogs div pan btn cover one next split

html:

<div>
    <input id="lefile" type="file" style="display:none">
    <input id="photoCover" type="text">
    <a class="btn-up">點擊上傳文件</a>
</div>

js:

$(‘.btn-up‘).on(‘click‘,function () {
            $(‘input[id=lefile]‘).click();
        })
        $(‘input[id=lefile]‘).change(function
() { $(this).next(‘input‘).val($(this).val().split(‘\\‘).pop()); });

jq簡單仿上傳文件