我已经阅读了与这一问题类似的问题,并且已经取得了相当的进展,但显然我的情况有所不同,因此我仍然试图说明这一点。
我有一份文本,与Tinymce html编辑作风格。 我希望文本雷阿能与阿富汗复兴共和与复兴共和军实现自动化。
我一直在制定法典,根据时间间隔节省案文:
$(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);
iii
iii
// 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;
}
iii
// If nothing has changed, don t do anything
} else {
return false;
}
}
这是行之有效的,但我的问题是,形式要素的形成是动态的,因此我并不总是静态编辑,我可以使用。 我怎么能够更新,以接受动态的国际发展动态。
例如,这里的案文中有一个与《公约》有活力地制定:
<textarea id="Com<%=QuesID%>" row= "1" cols= "120" name="Com<%=QuesID%>" QuesID="<%=QuesID%>" wrap tabindex="21" rows="10" class="formTxt"><%=TempTxt%></textarea>
此外,我试图指出一种办法,不仅在间隔时间,而且当用户点出文字区,而且分散重点时,就把储蓄功能称作“拯救功能”。 我不敢肯定如何做到这一点,因为锡奈斯岛从一个文字区改为一个明显明显的框架。
非常感谢任何帮助。