如何在JavaScript中检测到WordPress 4.2.2中wp_editor
tinyMCE实例的内容是否发生了变化?
我尝试使用tinyMCE.editors["content"].isDirty()
,但结果总是错误的。
答案 0 :(得分:1)
if (tinyMCE.activeEditor.isDirty())
alert("You must save your contents.");
正在为我工作。
更多:activeEditor, isDirty