dev_forum
hjm 5 years ago
parent d462e2c57a
commit 75eef2a43a

@ -81,9 +81,10 @@ function md_elocalStorage(editor,mdu,id){
var id1 = "#e_tip_"+id;
var id2 = "#e_tips_"+id;
var text = " 数据已于 " + h + ':' + m + ':' + s +" 保存 ";
var textStart = " 数据已于 "
var text = textStart + h + ':' + m + ':' + s +" 保存 ";
// 占位符
if ($(id2).html() && $(id2).html() != ' ') {
if ($(id2).html() && $(id2).html() != ' ' && $(id2).html().startWith(textStart) == false) {
$(id2).html( $(id2).html().split(' (')[0] + ` (${text})`);
} else {
$(id2).html(text);

Loading…
Cancel
Save