textArea怎么设置光标在第一行第一个字符,并且光标不能通过鼠标来点击出现的位置,空格和回车可以
1个回答
展开全部
<!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 不行
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询