猿问

js获取页面选中文字并显示为什么不对,哪里错啦。

window.onload=function(){

document.getElementById('txt').onMouseUp=function(){

var text=window.getSelection();

if(text.toString().length>1){

alert(text);}

}

}

//txt是页面文字所在div的id,应用的chrome浏览器,暂时不考虑其他浏览器兼容问题。


昔日灬虚无
浏览 1382回答 2
2回答

慕标2337738

<!DOCTYPE html> <html>   <head>     <title>2.html</title>       <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">     <meta http-equiv="description" content="this is my page">     <meta http-equiv="content-type" content="text/html; charset=UTF-8">          <!--<link rel="stylesheet" type="text/css" href="./styles.css">-->   </head>   <script type="text/javascript">   window.onload=function(){ document.getElementById('txt').onmouseup=function(){ var text=window.getSelection(); if(text.toString().length>1){ alert(text);} } }   </script>   <body id="txt">     This is my HTML page. <br>   </body> </html> --mouseup首字母大写了 

qq_就不告诉你_03636250

楼上  好吊的样子
随时随地看视频慕课网APP

相关分类

JavaScript
我要回答