欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

jQuery實(shí)時(shí)顯示鼠標(biāo)指針位置和鍵盤ASCII碼

 更新時(shí)間:2016年03月28日 09:24:29   作者:李斌  
本文通過jquery技術(shù)實(shí)現(xiàn)鼠標(biāo)指針位置和鍵盤ASCII碼,非常具有參考借鑒價(jià)值,感興趣的朋友一起學(xué)習(xí)吧

本文通過jquery技術(shù)實(shí)現(xiàn)鼠標(biāo)指針位置和鍵盤ASCII碼,代碼簡單易懂,具體內(nèi)容請(qǐng)看下文吧。

 這里寫圖片描述

<!DOCTYPE html>
<html>
<head>
<title></title>
<meta charset="utf-8" />
<script type="text/javascript" src="js/jquery-2.1.4.js"></script>
<script language="javascript" type="text/javascript">
$(function() {
$(document).mousemove(function(e) {
$("span").html("X:" + e.pageX + "Y:" + e.pageY + "事件" + e.type);
//不行 document.write("X:" + e.pageX + "Y:" + e.pageY + "事件" + e.type);
});
});
</script>
</head>
<body>
<span></span>
</body>
</html>

按A

這里寫圖片描述

<!DOCTYPE html>
<html>
<head>
<title></title>
<meta charset="utf-8" />
<script type="text/javascript" src="js/jquery-2.1.4.js"></script>
<script language="javascript" type="text/javascript">
$(function() {
$(document).keydown(function(e) {
$('span').html(e.which);
})
});
</script>
</head>
<body>
<span></span>
</body>
</html>

以上內(nèi)容是小編給大家介紹的jQuery實(shí)時(shí)顯示鼠標(biāo)指針位置和鍵盤ASCII碼,希望對(duì)大家有所幫助,更多知識(shí)請(qǐng)關(guān)注腳本之家官網(wǎng),該站每天都有新的內(nèi)容更新!

相關(guān)文章

最新評(píng)論