我的页面中有 texbox,我正在尝试从文本框中获取长度。我知道如何在 IE 中获取长度,但以下代码在 FF 和 chrome 中不起作用。
<!DOCTYPE html>
<html>
<head>
<script>
function myFunction(obj)
{
alert("mouse up");
var r=window.getSelection().createRange();
alert(r.text.length);
}
</script>
</head>
<body>
<textarea id="myArea" cols="30" spellcheck="false" onmouseup=myFunction(this)>Select some text within this field.</textarea>
</body>
</html>