<body>
<script language="JScript">
onload=function(){
var evt=Evt(205,205,'onclick');
}
///////////////////////////////////////////////////////////
function Evt(x,y,type){
var evt = document.createEventObject();
evt.x=x;
evt.y=y;
document.fireEvent(type,evt);
return evt;
}
document.onclick=function(){
var rng = document.body.createTextRange();
rng.moveToPoint(event.x, event.y);
rng.expand("word");
rng.select();
}
</script>
<div >
<div style="position:absolute;left:200;top:200;" >div</div>
</div>
fffffffffff
</body>
时间: 2024-11-10 13:29:49