javascript 在textarea中选择文本
下面是我为ff写的代码,$()为获取ID函数,这段的作用是为选择部分添加一些html标记varstart=$("f-edit").selectionStart;varen...
下面是我为ff写的代码,$()为获取ID函数,这段的作用是为选择部分添加一些html标记
var start =$("f-edit").selectionStart;
var end=$("f-edit").selectionEnd;
if((start-end)==0) return ;
var textValue = $("f-edit").value;
// 下面的str用alert就显示不正确了,其它都正确
var str = textValue.substr(start,end-1);
alert(start);
alert(end);
alert(str);
str = '<p align="'+direction+'" >'+ str +'</p>';
$("f-edit").value = textValue.substr(0,start)+ str + textValue.substr(end,textValue.length);
文本编码是uf-8,每次选择的部分总是比实际选择的要多出几个字符,这是怎么回事?
高手赐教啊!
我不知道lanxiazhi 说的是否正确,但是还是感谢他的回答。我的解决方法是substr改成substring然后就可以了! 展开
var start =$("f-edit").selectionStart;
var end=$("f-edit").selectionEnd;
if((start-end)==0) return ;
var textValue = $("f-edit").value;
// 下面的str用alert就显示不正确了,其它都正确
var str = textValue.substr(start,end-1);
alert(start);
alert(end);
alert(str);
str = '<p align="'+direction+'" >'+ str +'</p>';
$("f-edit").value = textValue.substr(0,start)+ str + textValue.substr(end,textValue.length);
文本编码是uf-8,每次选择的部分总是比实际选择的要多出几个字符,这是怎么回事?
高手赐教啊!
我不知道lanxiazhi 说的是否正确,但是还是感谢他的回答。我的解决方法是substr改成substring然后就可以了! 展开
2个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询