2011年11月13日 星期日

取得座標

取得座標
http://www.myandroid.tw/bbs-topic-177.sea

screenX : 取得事件觸發時滑鼠游標相對於螢幕畫面的 X 座標。
物件名稱.screenX
screenY : 取得事件觸發時滑鼠游標相對於螢幕畫面的 Y 座標。
物件名稱.screenY
範例 : 參考 screenX

範例 :
<center>
<input type="button" value="相對物件座標" OnClick="esxy( )">
</center>

<script language="javascript">
<!--
function esxy( )
{
str = "來源物件型態是:" + event.srcElement.type + "\n"
+ "滑鼠游標相對於螢幕畫面的 X 座標是:" + event.screenX + "\n"
+ "滑鼠游標相對於螢幕畫面的 Y 座標是:" + event.screenY;
alert(str);
}
//-->
</script>

參考網址:
http://www.mlog.tw/bee/modules.php?act=article&do=show&id=8

參考網址:
http://rhapsodicspace.blogspot.com/2008/04/techjavascript.html


參考網址:
http://shelleyura.pixnet.net/blog/post/25798299
http://fillano.blog.ithome.com.tw/post/257/2745

沒有留言:

張貼留言