意思就是不想用编辑的那个上传页面和浏览器服务器的页面,想自己做两个页面,需要怎么设置啊
//图片管理 KE.lang['image'] = "添加图片"; KE.plugin['image'] = { click : function(id) { KE.util.selection(id); this.dialog = new KE.dialog({ id : id, cmd : 'imagefile', file : '../../../image.jsp', //这里我想自己连接个jsp页面 width : 400, height : 220, loadingMode : true, title : KE.lang['image'], yesButton : KE.lang['yes'], noButton : KE.lang['no'] }); this.dialog.show(); } }