亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱

搜索
博主信息
博文 250
粉絲 3
評論 0
訪問量 381104
最新下載
更多>
網(wǎng)站特效
網(wǎng)站源碼
網(wǎng)站素材
前端模板
JS--鼠標(biāo)事件
梁凱達(dá)的博客
原創(chuàng)
1087人瀏覽過

實(shí)例

<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>Document</title>
	<style>
			#box{width:100px;height:100px;background:pink;}
			#big{width:200px;height:200px;background:blue;display:none;margin-left:800px;}
	</style>
</head>
<body>
	<div id="box"></div>
	<div id="big"></div>
</body>
<script>
var  box = document.getElementById('box');
var  big = document.getElementById('big');
var timmer;
box.onmouseover = big.onmouseover = function (){
	// console.log('鼠標(biāo)移入')
	// box.style.background="yellow";
	clearTimeout(timmer);
	big.style.display="block";
}

box.onmouseout = big.onmouseout = function(){
	// console.log('鼠標(biāo)移除')
	// box.style.background="pink";
	timmer=setTimeout(function(){	
		big.style.display="none";
	},300);
}
// big.onmouseover = function(){
// 	big.style.display="block";
// }
// big.onmouseout = function(){
// 	big.style.display="none";
// }
</script>
</html>

運(yùn)行實(shí)例 ?

點(diǎn)擊 "運(yùn)行實(shí)例" 按鈕查看在線實(shí)例

實(shí)例

<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>Document</title>
	<style>
		#parent{width:300px;height:300px;background:red;}
		#son{width:100px;height:100px;background:yellow;}
	</style>
</head>
<body>
	<div id="parent">
		<div id="son"></div>
	</div>
</body>
<script>
var parent = document.getElementById('parent');

parent.onmouseenter= function(){
	console.log('鼠標(biāo)移入?yún)^(qū)域')
}
parent.onmouseleave = function(){
	console.log('鼠標(biāo)移除區(qū)域')
}
</script>
</html>

運(yùn)行實(shí)例 ?

點(diǎn)擊 "運(yùn)行實(shí)例" 按鈕查看在線實(shí)例

本博文版權(quán)歸博主所有,轉(zhuǎn)載請注明地址!如有侵權(quán)、違法,請聯(lián)系admin@php.cn舉報(bào)處理!
全部評論 文明上網(wǎng)理性發(fā)言,請遵守新聞評論服務(wù)協(xié)議
0條評論
作者最新博文
關(guān)于我們 免責(zé)申明 意見反饋 講師合作 廣告合作 最新更新
php中文網(wǎng):公益在線php培訓(xùn),幫助PHP學(xué)習(xí)者快速成長!
關(guān)注服務(wù)號 技術(shù)交流群
PHP中文網(wǎng)訂閱號
每天精選資源文章推送
PHP中文網(wǎng)APP
隨時(shí)隨地碎片化學(xué)習(xí)
PHP中文網(wǎng)抖音號
發(fā)現(xiàn)有趣的

Copyright 2014-2025 http://ipnx.cn/ All Rights Reserved | php.cn | 湘ICP備2023035733號

  • 登錄PHP中文網(wǎng),和優(yōu)秀的人一起學(xué)習(xí)!
    全站2000+教程免費(fèi)學(xué)