Document
(function($) {
$.fn.showUpPic = function(){
fileBtn = this;
this.on('change',function(){
var imgPath = window.URL.createObjectURL(fileBtn[0].files[0]);
if(fileBtn.siblings('img')[0]!==undefined){
fileBtn.siblings('img')[0].src = imgPath;
}else{
var img = document.createElement("img");
img.style.width="50px";
img.style.width="100px";
img.src = imgPath;
fileBtn[0].parentNode.appendChild(img);
}
});
};
})(jQuery);