Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
これは2つの質問ですが、1つの問題があります。
現在の/選択されたオブジェクトCSSを取得するにはどうすればよいclassですか?
class
現在の/選択したオブジェクトのCSSを設定するにはどうすればよいclassですか?
TinyMCE 3.5.8(jQueryバージョン)を使用しています。
を使用して、選択したノードを取得できます
var node = tinymce.get('your_editor_id').selection.getNode();
とクラス
$(node).attr("class");