怎样实现在textarea里面的光标处插入字符
要求单一个按钮,在文本框的光标处插入规定字符,应该怎样用javascript实现?已知下列代码在IE可行,但在FF里不行。请求一个通用方法。<FORM><TEXTAREA...
要求单一个按钮,在文本框的光标处插入规定字符,应该怎样用javascript实现? 已知下列代码在IE可行,但在FF里不行。请求一个通用方法。 <FORM> <TEXTAREA NAME="a" ONSELECT="this.pos=document.selection.createRange();" onCLICK="this.pos=document.selection.createRange();" onKEYUP="this.pos=document.selection.createRange();">1234567</TEXTAREA> <INPUT TYPE="button" VALUE="插!" onCLICK="try{this.form.a.pos.text='插!';}catch(e){}"> </FORM>
展开
展开全部
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
</head>
<body>
<script>
function s(e,a)
{
if ( e && e.preventDefault )
e.preventDefault();
else
window.event.returnValue=false;
a.focus();
}
</script>
<textarea id="anan" onmousedown="s(event,this)"></textarea>
</body>
</html>
chrome firefox safari oprea测试行的 IE 不行
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
</head>
<body>
<script>
function s(e,a)
{
if ( e && e.preventDefault )
e.preventDefault();
else
window.event.returnValue=false;
a.focus();
}
</script>
<textarea id="anan" onmousedown="s(event,this)"></textarea>
</body>
</html>
chrome firefox safari oprea测试行的 IE 不行
展开全部
<FORM> <TEXTAREA NAME="a" ONSELECT="this.pos=document.selection.createRange();" onCLICK="this.pos=document.selection.createRange();" onKEYUP="this.pos=document.selection.createRange();">1234567</TEXTAREA> <INPUT TYPE="button" VALUE="插!" onCLICK="try{this.form.a.pos.text='插!';}catch(e){}"> </FORM>
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询