獲得鼠標(biāo)的坐標(biāo),很簡(jiǎn)單,代碼如下,你試試:
在沂南等地區(qū),都構(gòu)建了全面的區(qū)域性戰(zhàn)略布局,加強(qiáng)發(fā)展的系統(tǒng)性、市場(chǎng)前瞻性、產(chǎn)品創(chuàng)新能力,以專注、極致的服務(wù)理念,為客戶提供成都網(wǎng)站設(shè)計(jì)、成都網(wǎng)站制作 網(wǎng)站設(shè)計(jì)制作按需求定制設(shè)計(jì),公司網(wǎng)站建設(shè),企業(yè)網(wǎng)站建設(shè),成都品牌網(wǎng)站建設(shè),成都全網(wǎng)營銷,外貿(mào)營銷網(wǎng)站建設(shè),沂南網(wǎng)站建設(shè)費(fèi)用合理。
jQuery?Code:
$('body').bind("mousemove",function(event){
$('#ss').html('The?mouse?cursor?is?at:(?'+?event.pageX?+?','?+?event.pageY?+?')');
});
Xhtml?Code:
div?id="ss"The?mouse?cursor?is?at:/div
附圖一張,效果如下:
IE6?FF?Chrome?下都沒有問題哦 已經(jīng)試過
body
img?src=""?style="margin-left:240px;"/
p/p
/body
$(function(){
$(document).mousemove(function(e){
var?e?=?e?||?event,?x?=?e.pageX;
$("p").text(?x-$('img').offset().left?);
});
});
div onmouseover="test(event)"/div
function test(e){
//這里可得到鼠標(biāo)X坐標(biāo)
var pointX = e.pageX;
//這里可以得到鼠標(biāo)Y坐標(biāo)
var pointY = e.pageY;
}
Math.round(32/10)*10;
Math.round:將值舍入到最接近的整數(shù)或指定的小數(shù)位數(shù)。
個(gè)位數(shù)的四舍五入,可以先除以10,用round舍去之后再乘以10。
獲取當(dāng)前位置代碼如下:
html
head
meta http-equiv="Content-Type" content="text/html; charset=gb2312" /
titlejavascript獲得鼠標(biāo)位置/title
/head
body
script
!-- 其中的參數(shù)e指的是事件--
function mouseMove(ev)
{
Ev= ev || window.event;
var mousePos = mouseCoords(ev);
//獲取當(dāng)前的x,y坐標(biāo)
document.getElementByIdx_x_x_xx_x("xxx").value = mousePos.x;
document.getElementByIdx_x_x_xx_x("yyy").value = mousePos.y;
}
function mouseCoords(ev)
{
//鼠標(biāo)移動(dòng)的位置
if(ev.pageX || ev.pageY){
return {x:ev.pageX, y:ev.pageY};
}
return{
x:ev.clientX + document.body.scrollLeft - document.body.clientLeft,
y:ev.clientY + document.body.scrollTop - document.body.clientTop
};
}
document.onmousemove = mouseMove;
/script
鼠標(biāo)X軸:
input id=xxx type=text
鼠標(biāo)Y軸:
input id=yyy type=text
/body
function test(e){ //這里可得到鼠標(biāo)X坐標(biāo) var pointX = e.pageX; //這里可以得到鼠標(biāo)Y坐標(biāo) var pointY = e.pageY; }