gpt4 book ai didi

javascript - 禁用一些按钮 TinyMCE

转载 作者:行者123 更新时间:2023-11-29 18:25:15 25 4
gpt4 key购买 nike

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

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

我试过 cm.setDisabled(1); 但这会禁用所有按钮。

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

最佳答案

尝试关注这个 fiddle..

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) ;

希望对您有所帮助!

关于javascript - 禁用一些按钮 TinyMCE,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14179539/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com