我一直在阅读与此问题类似的问题并且已经能够走得很远,但显然我的情况略有不同,所以我仍在努力解决这个问题。
我有一个表单,其中包含使用 Tinymce html 编辑器设置样式的文本区域。我希望 textarea 使用 AJAX 自动保存。
我一直在使用基于时间间隔保存文本区域的代码:
$(document).ready(function() {
$(function() {
// Here we have the auto_save() function run every 30 secs
// We also pass the argument 'editor_id' which is the ID for the textarea tag
setInterval("auto_save('editor_id')",30000);
});
});
// Here is the auto_save() function that will be called every 30 secs
function auto_save(editor_id) {
// First we check if any changes have been made to the editor window
if(tinyMCE.getInstanceById(editor_id).isDirty()) {
// If so, then we start the auto-save process
// First we get the content in the editor window and make it URL friendly
var content = tinyMCE.get(editor_id);
var notDirty = tinyMCE.get(editor_id);
content = escape(content.getContent());
content = content.replace("+", "%2B");
content = content.replace("/", "%2F");
// We then start our jQuery AJAX function
$.ajax({
url: "PAFormAJAX.asp", // the path/name that will process our request
type: "POST",
data: "itemValue=" + content,
success: function(msg) {
alert(msg);
// Here we reset the editor's changed (dirty) status
// This prevents the editor from performing another auto-save
// until more changes are made
notDirty.isNotDirty = true;
}
});
// If nothing has changed, don't do anything
} else {
return false;
}
}
这是可行的,但我的问题是,表单元素是动态创建的,所以我并不总是有可以使用的静态 editor_id。如何更新它以接受动态 ID?
例如,这里有一个文本区域,它的 id 是用 ASP 动态设置的:
<textarea id="Com<%=QuesID%>" row= "1" cols= "120" name="Com<%=QuesID%>" QuesID="<%=QuesID%>" wrap tabindex="21" rows="10" class="formTxt"><%=TempTxt%></textarea>
此外,我试图找出一种方法,不仅可以在时间间隔内调用 save 函数,还可以在用户单击 textarea 并失去焦点时调用。我不确定如何做到这一点,因为 TinyMce 显然将其从 textarea 更改为 iframe。
任何帮助是极大的赞赏。