在光标选择处插入指定文字
摘要:
在IE和FF下,对于文本域或文本框有效。在IE下,对容器和文本域或文本框均有效。 1 var obj = document.getElementById('content'); 2 (function Insert(obj,str) 3 { 4 //IE下支持document.selection 5 if (document.selection) 6 { 7 obj.focus(); 8 sel = document.selection.createRange(); 9 sel.text = str;10 ... 阅读全文
posted @ 2012-02-08 21:32 zzbo 阅读(448) 评论(0) 推荐(1)
浙公网安备 33010602011771号