I'm trying to empty wherever value/text in the textarea, when a file is uploaded from input. It works fine with FF and Chrome, but IE doesn't do the thing. Is there anyway to fix this?
Many thanks in advance.
$('input[type=file]').change(function(){
$("textarea#txt_id").val('');
});
以上就是emptying the textarea in IE的详细内容,更多请关注web前端其它相关文章!