$('#myFile').change(function(){
console.log('hello');
$('#previewImg').attr('src','file:///'+$('#myFile').val());
});
解决了,这段代码的位置放错了,应该放在$(function())里