当前位置: 代码迷 >> Web前端 >> Textarea在光标逗留处插入文字
  详细解决方案

Textarea在光标逗留处插入文字

热度:139   发布时间:2012-11-04 10:42:42.0
Textarea在光标停留处插入文字
<!-- 

function Insert(str) { 
var obj = document.getElementById('content'); 
if(document.selection) { 
obj.focus(); 
var sel=document.selection.createRange(); 
document.selection.empty(); 
sel.text = str; 
} else { 
var prefix, main, suffix; 
prefix = obj.value.substring(0, obj.selectionStart); 
main = obj.value.substring(obj.selectionStart, obj.selectionEnd); 
suffix = obj.value.substring(obj.selectionEnd); 
obj.value = prefix + str + suffix; 
} 
obj.focus(); 
} 
--> 

?兼容IE、firefox

  相关解决方案