TvoyWeb
CODE:function addText(a, b)//a - открывающий тег, b - закрывающий, но можно и без него
{
var t=document.formName.textareaName, s=document.selection;
t.focus();
if (s)
{
var r=s.createRange();
if (b)
r.text=a+r.text+b;
else
r.text=a;
}
else if (t.setSelectionRange)
{
var t1=t.value.substring(0, t.selectionStart);
var t2=t.value.substring(t.selectionStart, t.selectionEnd);
var t3=t.value.substring(t.selectionEnd, t.value.length);
if (b)
{
t.value=t1+a+t2+b+t3;
t.setSelectionRange(t1.length, t.value.length-t3.length);
}
else
t.value=t1+a+t3;
}
else
{
if (b)
t.value+=(t.value.indexOf(a)>t.value.indexOf(b) ? b : a);
else
t.value+=a;
}
t.focus();
} |