從此後面的:TinyMCE editor fixed size with no scrollers?tinyMCE:刪除最後插入的代碼
如何刪除tinyMCE中最後插入的代碼?
setup : function(ed){
ed.onKeyDown.add(function (ed, evt) {
var currentfr=document.getElementById(ed.id + '_ifr');
if (currentfr.contentDocument && currentfr.contentDocument.body.offsetHeight) { //ns6 syntax
currentfr.height = currentfr.contentDocument.body.offsetHeight + 26;
}
else if (currentfr.Document && currentfr.Document.body.scrollHeight) { //ie5+ syntax
currentfr.height = currentfr.Document.body.scrollHeight;
}
if(currentfr.height >= 156){
// Remove last inserted code here
}
});
},
所以,如果身高是156或更高,它應該刪除你剛輸入的內容(代碼)。
我怎樣才能做到這一點?
+1很好的問題 – Thariama