首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > Web前端 >

Textarea在光标逗留处插入文字

2012-11-04 
Textarea在光标停留处插入文字!-- function Insert(str) { var obj document.getElementById(content

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

热点排行