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

特定のボタンを無効にするには、divId_buttonName のようなそのボタンの ID が必要です

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

再度有効にするには

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

それが役に立てば幸い!

于 2013-01-07T05:25:19.660 に答える