function goEditImg(Id,imgUrl){
top.jzts();
var diag = new top.Dialog();
diag.Drag=true;
diag.Title ="添加照片";
diag.URL = '<%=basePath%>userbaseinformation/goEditImg.do?USER_ID='+Id;;
diag.Width = 450;
diag.Height = 355;
diag.CancelEvent = function(){ //关闭事件
// if('${page.currentPage}' == '0'){
// top.jzts();
// setTimeout("self.location=self.location",100);
// }else{
// nextPage(${page.currentPage});
// }
alert(imgUrl);
$("#mPhoto").attr("src",imgUrl);
diag.close();
};
diag.show();
}
选择修改图片 如何实现只刷新图片 而不是刷新整个页面呢 图片的url是不变的,变的是图片。