我正在为我的应用程序使用 cleditor 插件。因为我需要附加文档选项(如 ms-word)。所以我使用下面的代码来实现附加选项。它已成功将文档添加为编辑器中的超链接,但无法单击并打开该链接。
谁可以帮我这个事。或者向我建议任何替代方法。
注意:最后我想将附件的内容保存到数据库中。请对此也提出任何建议。
提前致谢。
代码
(function(n)
{
function t(t,i)
{
n(i.popup).children(":button").unbind("click").bind("click",function()
{
var r=i.editor,u=n(i.popup).find(":text"),v=n(i.popup).find(":file"),f=v[0].value,e=u[0].value,t;
if(f!=""&&e!=""){
t="<a href="+f+" target=_blank>"+e+"<\/a>";
t&&r.execCommand(i.command,t,null,i.button);
}
t&&r.execCommand(i.command,t,null,i.button);
r.hidePopups();
r.focus()
});
}
n.cleditor.buttons.file=
{
name:"file",
image:"file.gif",
title:"Insert File",
command:"inserthtml",
popupName:"file",
popupClass:"cleditorPrompt",
popupContent:'<label>Url: <input type="file" value="" style="width:250px"><\/label><br /><label>Title:<br /><input type="text" value="" style="width:70px"><\/label><br /><input type="button" value="Submit">',
buttonClick:t
};
n.cleditor.defaultOptions.controls=n.cleditor.defaultOptions.controls.replace("rule ","rule file ")
}
)(jQuery);