我正在使用codeigniter 3.1。
如何更改上传文字语言?
<input type="file" name="file" />
我想将Choose File - No file chosen
默认英语更改为其他语言
我试过这个但没有用。
<input type="file" name="file" value="new language" />
答案 0 :(得分:2)
试试这个,
<强> HTML:强>
<div>
<input type='file'/>
<span id='val'></span>
<span id='button'>Select File</span>
</div>
<强> JAVASCRIPT 强>
$('#button').click(function(){
$("input[type='file']").trigger('click');
})
$("input[type='file']").change(function(){
$('#val').text(this.value.replace(/C:\\fakepath\\/i, ''))
})
<强> DEMO 强>