我在Wordpress编辑器窗口中使用TinyMCE创建了一个按钮,使用户可以轻松添加短代码。
目前,我正在进行三次 prompt(); 调用以从用户那里获取三个输入。这可以在一个提示窗口中完成,用户可以在其中输入所有必需的信息吗?
ed.addCommand('addcredits', function() {
var ctype = prompt("What do you want to add (Source/ Via) ? "),shortcode;
var clink = prompt("Link?"), shortcode;
var cname = prompt("Link Name"), shortcode;
shortcode = '[credits link="'+ clink +'" type="' + ctype + '"]' + cname +'[/credits]';
ed.execCommand('mceInsertContent', 0, shortcode);
}