为什么运行下面这个网页,IE会提示出错
“对象Event未定义”
<html>
<head> <title>document.getSelection方法</title> <script language=javascript> function showselection() { document.forms[0].selectedtext.value=document.getSelection(); } document.captureEvents(Event.MOUSEUP) document.onmouseup=showselection </script>
</head>
<body> <b>请选中页面中的一些文本</b> <hr> <p> 这些都是用来测试的文本,你可以用鼠标来选中,然后试一试选择文本后产生的结果。 </p> <form name=form1> <center> <br> <textarea name="selectedtext" rows=3 cols=40 wrap="vertual"> </textarea> <br>
</center> </form>
</body>
</html>