代码如下: /** *往输入域中插入字符串(光标所在位置) *@param $t document.getElementById(‘fieldId’) *@param myValue 要插入的值 ** function addSplitToField($t,myValue){ if (document.selection) { $t.focus(); sel = document.selection.createRange(); sel.text = myValue; $t.focus(); }else if($t.sel