How to set a value to a file input in HTML?

前端 未结 8 1800
天命终不由人
天命终不由人 2020-11-21 04:45

How can I set the value of this?


8条回答
  •  南笙
    南笙 (楼主)
    2020-11-21 05:20

    Define in html:

    
    

    In JS:

    ajax.jsonRpc("/consulta/dni", 'call', {'document_number': document_number})
        .then(function (data) {
            if (data.error){
                ...;
            }
            else {
                $('#image').val(data.image);
            }
        })
    

    After:

    
    
    

提交回复
热议问题