锘??xml version="1.0" encoding="utf-8" standalone="yes"?>
<script LANGUAGE="JavaScript">
var isNav = (navigator.appName.indexOf("Netscape") !=-1);
function showSelection(){
if (window.getSelection) {
alert(window.getSelection());
document.forms[0].selectedText.value=window.getSelection();
} else if (document.getSelection) {
alert(document.getSelection());
document.forms[0].selectedText.value=document.getSelection();
} else if (document.selection) {
alert(document.selection.createRange().text);
document.forms[0].selectedText.value=document.selection.createRange().text;
}
}
if (isNav) {
document.captureEvents(Event.MOUSEUP);
}
document.onmouseup = showSelection;
</script>
</head>
<body>
<P>
榪欎簺閮芥槸鐢ㄦ潵嫻嬭瘯鐨勬枃鏈紝鎮(zhèn)ㄥ彲浠ョ敤榧犳爣鏉ラ変腑錛岀劧鍚庤瘯涓璇曢夋嫨鏂囨湰鍚庝駭鐢熺殑緇撴瀯銆?br></P>
<form name="dataholder">
<textarea name="selectedText" rows = 3 cols=40 wrap="virtusl">
</textarea>
</form>
</body>