要问一些事, 我的jquery代码在safari浏览器中不能在输入类型“file”中更改图像源。这是我的代码,我需要这个,谢谢你回答。
$(window).ready(function(){
function readURL(input) {
if (input.files && input.files[0]) {
var reader = new FileReader();
reader.onload = function (e) {
$('#prev').attr('src', e.target.result);
if($('#prev').width() >= 350){
$('#prev').attr('style', 'width: 100%;');
}else{
$('#prev').attr('style', 'width: auto;');
}
if($('#prev').height() >= 210){
$('#prev').attr('style', 'height: 210px;');
}else{
}
}
reader.readAsDataURL(input.files[0]);
}
};
$("#seeimg").change(function(){
readURL(this);
});
});