主题: Image 图片上传插件的options.showRemote配置如何配置为false? |
作者: lisan, 发布日期: 2012-08-20 15:17:11, 浏览数: 3329 |
在image.js源码看到如下代码:
self.plugin.imageDialog = function(options) { var imageUrl = options.imageUrl, imageWidth = K.undef(options.imageWidth, ''), imageHeight = K.undef(options.imageHeight, ''), imageTitle = K.undef(options.imageTitle, ''), imageAlign = K.undef(options.imageAlign, ''), showRemote = K.undef(options.showRemote, true), showLocal = K.undef(options.showLocal, true),但要怎么设置 options.showRemote |