所以我有这段代码,例如:
function image() {
var debug = true;
try{
var win = window.dialogArguments || opener || parent || top;
win.send_to_editor('[button size="" color="" link=""]place title here[/button]');
}catch(e){
console.log("Could not send to window: " + e);
}
}
使用时会将一些文本从弹出窗口发送到我的编辑器,我的所见即所得。它如何不断抛出错误:
无法发送到窗口:错误:语法错误,无法识别的表达式:[button size="" color="" link=""]在此处放置标题[/button]
这应该只是发送给编辑,有什么想法吗?