读书人

Textarea在光标逗留处插入文字

发布时间: 2012-11-04 10:42:42 作者: rapoo

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

读书人网 >Web前端

热点推荐