/**
*入力フィールド(カーソルがある場所)に文字列を挿入します。
*@param $t document.getElementById('fieldId')
*@param myValue 挿入する値selected
* *
function addSplitToField($t,myValue){
if (document.selection) {
$t.focus();
sel = document.selection.createRange() ;
sel .text = myValue;
$t.focus();
}else if($t.selectionStart || $t.selectionStart == '0') {
var startPos = $t.selectionStart;
var endPos = $t.selectionEnd;
varscrollTop = $t.value.substring(0, startPos) myValue $t. value.substring(endPos , $t.value.length);
this.focus();
$t.selectionStart = startPos myValue.length; 🎜>$t.scrollTop = スクロールトップ;
$t.value = myValue;
}
}
;