js中的监听事件练习

<!DOCTYPE html>
<html>
	<head>
		<meta charset="UTF-8">
		<title></title>
	</head>
	<body>
		<div id="div0">
			<label for="username">用户名:</label> <input type="text" id="username" name="username" />
			<input type="button" name="button_id" id="button_id" value="点击试试" />
			<select name="" id="city">
				<option value="">--请选择--</option>
				<option>上海</option>
				<option>北京</option>
				<option>西安</option>
			</select>
		</div>
	</body>
	<script type="text/javascript">
		var div = document.getElementById("div0");
		div.style.width="600px";
		div.style.height="300px";
		div.style.border="1px solid red";
		// 鼠标双击事件
		document.getElementById("button_id").ondblclick=function(){
			alert("我被点击了两次");
		}
		/*// 鼠标获取焦点事件
		document.getElementById("username").onfocus=function(){
		//	div.innerHTML="酷酷酷";
		}
		
		// 鼠标失去焦点事件
		document.getElementById("username").onblur=function(){
			alert("我失去了焦点");
		}*/
		// 鼠标移动到div上
		document.getElementById("div0").onmouseover=function(){
			
			div.style.border="1px solid blue";
		}
		// 鼠标移开div
		document.getElementById("div0").onmouseout=function(){
			
			div.style.border="1px solid red";
		}
		
		// 确定鼠标点击的是哪个键
		/*document.getElementById("username").onmousedown=function(event){
			alert(event.button);
		}*/
		
		// 确定键盘中的哪个键被按下
		/*document.getElementById("username").onkeydown=function(event){
			alert(event.keyCode);
		}*/
		
		// onchange域内容改变事件
		document.getElementById("city").onchange=function(){
			alert("改变了一次");
		}
	</script>
</html>

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值