1.html
<a id="logoIframe" href="img_upload.jsp?callback=cbImg">
<input id="edit_btn" type="button" value="点击修改" />
</a>
2.js
$("#edit_btn").on("click",function(event){
$("#logoIframe").colorbox({
iframe:!0,
scrolling: !1,
overlayClose: !0,
closeButton:!0,
width:550,
height:450,
title: "上传图片"
});});
