js 在光標(biāo)當(dāng)前位置插入文字(光標(biāo)處插入或修改文字,selection,creeateRange,c
當(dāng)前位置:點(diǎn)晴教程→知識(shí)管理交流
→『 技術(shù)文檔交流 』
function StoreCaret(textEl){
if(textEl.createTextRange){ textEl.caretPos=document.selection.createRange().duplicate(); } } function InsertAtCaret(textEl,text){ if(textEl.createTextRange && textEl.caretPos){ var caretPos=textEl.caretPos; caretPos.text=caretPos.text.charAt(caretPos.text.length-1)==' '?text+' ':text; }else{ textEl.value=text; } } function DeleteAtCaret(textEl,fileEl){ textEl.value=textEl.value.replace(fileEl.value,""); } //使用方法: 該文章在 2010/2/2 0:30:44 編輯過 |
關(guān)鍵字查詢
相關(guān)文章
正在查詢... |