//使用方法 new AutoSave($("#text")).init(); var AutoSave = function(textAreaDiv) {
var t;// 超时函数 var req;// ajax提交 this.init = function() {
textAreaDiv.keyup(function() {
t!= null ? clearTimeout(t) : "";
req!= null ? req.abort() : "";
// 延时1秒提交保存 t = setTimeout(function() {
req= $.post("updateContent.php", {
content: textAreaDiv.val()
}, function() {
req= null;
});
t= null;
}, 1000);
});
};
};