...光标不能通过鼠标来点击出现的位置,空格和回车可以
发布网友
发布时间:2024-10-03 10:00
我来回答
共1个回答
热心网友
时间:2024-10-22 02:17
<!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 不行