如何检测wp_editor的变化?

时间:2015-05-26 15:09:49

标签: javascript wordpress tinymce-4 wp-editor

如何在JavaScript中检测到WordPress 4.2.2中wp_editor tinyMCE实例的内容是否发生了变化?

我尝试使用tinyMCE.editors["content"].isDirty(),但结果总是错误的。

1 个答案:

答案 0 :(得分:1)

if (tinyMCE.activeEditor.isDirty())
    alert("You must save your contents.");

正在为我工​​作。

更多:activeEditorisDirty