function upload(){
var myimg = URL.createObjectURL(document.getElementById('tp').files[0]);
var img = new Image();
img.src = myimg;
img.onload = function(){
if(img.width > 425 || img.height > 295){
alert("只能上传小于418x282的图片!");
$(".remove").click();
}
};
};