3

我可以通过运行 javacript 命令以某种方式禁用某些按钮..

不在 上TinyMCE.init,因为我需要在发生特殊事件时禁用某些按钮。

我已经尝试过cm.setDisabled(1);,但这会使所有按钮都被禁用。

如果有这样的要求,有什么想法吗?或者我应该尝试制作一个javascript函数,我可以随时调用它来再次禁用/重新启用按钮?

4

1 回答 1

4

试着跟着这个小提琴..

Here Bold and Save buttons get disabled on clicking Disable button
and enabled on clicking Enable button.

Buttons are at the bottom of the page

要禁用特定按钮,您需要该按钮的 id,即您的 divId_buttonName 之类

tinyMCE.activeEditor.controlManager.get('disable_save').setDisabled(true) ;

为了再次启用它

tinyMCE.activeEditor.controlManager.get('disable_save').setDisabled(false) ;

希望能帮助到你!

于 2013-01-07T05:25:19.660 回答