google-code-export / xheditor

Automatically exported from code.google.com/p/xheditor
GNU Lesser General Public License v3.0
1 stars 1 forks source link

上传方面的常用设置是否能直接定义在xheditor-zh-cn.js里? #153

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
对于编辑器自定义设置
比如一个用CSS样式方式植入的用向导产生的代码是这样的:
xheditor {upImgUrl:'Sdcms_Editor_Up.asp?
t0=0',upImgExt:'jpg,jpeg,gif,png,bmp',upFlashUrl:'Sdcms_Editor_Up.asp?
t0=1',upFlashExt:'swf,fla',upMediaUrl:'Sdcms_Editor_Up.asp?
t0=2',upMediaExt:'aiv,wmv'}

这样每次要使用编辑器里,都要在class里插入上面的代码。
但是由于我个人编辑器的设置改动不大,希望能够直接在js文
件里指定好,然后在页面中直接调
用如:
class="xheditor"

我尝试改动xheditor-zh-cn.js最后几行中这个函数里的
$(function(){
这一行
$('textarea.xheditor').xheditor();
为
$('textarea.xheditor').xheditor(true,{upImgUrl:"Sdcms_Editor_Up.asp?
t0=0",upImgExt:"jpg,jpeg,gif,png,bmp",upFlashUrl:"Sdcms_Editor_Up.asp?
t0=1",upFlashExt:"swf",upMediaUrl:"Sdcms_Editor_Up.asp?
t0=2",upMediaExt:"avi"});

可是没有生效,仍然编辑器里传图片的地方不能出现上传二��
�。还是只有在需要插入的地方完整
的写入代码为
<textarea name="t4" id="t4" class="xheditor {upImgUrl:'Sdcms_Editor_Up.asp?
t0=0',upImgExt:'jpg,jpeg,gif,png,bmp',upFlashUrl:'Sdcms_Editor_Up.asp?
t0=1',upFlashExt:'swf,fla',upMediaUrl:'Sdcms_Editor_Up.asp?
t0=2',upMediaExt:'aiv,wmv'}"
></textarea>

而我想要只是写成
<textarea name="t4" id="t4" class="xheditor"></textarea>

请问我应该如何操作?

Original issue reported on code.google.com by vincim...@gmail.com on 12 May 2010 at 3:34

GoogleCodeExporter commented 9 years ago
很抱歉,由于我们要忙于开发新版及回答众多用户的使用提��
�,没精力为二次开发提供技术支持,
望请谅解。

我只能告诉你,简单看了下你的修改,按理说应该有效,具��
�为什么没有效就要调试后才能知道
了。

Original comment by yanis.w...@gmail.com on 12 May 2010 at 3:46

GoogleCodeExporter commented 9 years ago
I'm so sorry
it was my fault.

是我多写了一个true,去掉变成

$('textarea.xheditor').xheditor({upImgUrl:"Sdcms_Editor_Up.asp?
t0=0",upImgExt:"jpg,jpeg,gif,png,bmp",upFlashUrl:"Sdcms_Editor_Up.asp?
t0=1",upFlashExt:"swf",upMediaUrl:"Sdcms_Editor_Up.asp?
t0=2",upMediaExt:"avi"});
就可以了

thanks for ur warm heart

Original comment by vincim...@gmail.com on 13 May 2010 at 9:20

GoogleCodeExporter commented 9 years ago

Original comment by yanis.w...@gmail.com on 30 Jun 2010 at 10:55