我目前正在创建一个 Joomla 插件,它可以向任何编辑器添加一个新按钮。单击按钮时,会出现一个模式,显示一个包含一些信息的表格。我想在这个模态中创建一个按钮,当它被点击时,模态将被关闭并且一个文本(现在是任何文本)将显示在编辑器中。
模态出现,按钮实现如下:
<button class="btn" type="button" onclick="window.parent.jInsertEditorText('something');window.parent.SqueezeBox.close();"><?php echo JText::_('CANCEL') ?></button>
但是点击它时出现错误:
Uncaught TypeError: Object [object Array] has no method 'execCommand' tiny_mce.js:1
j.EditorManager.d.execInstanceCommand tiny_mce.js:1
jInsertEditorText index.php?option=com_content&view=article&layout=edit:49
onclick
我会享受任何帮助:)