码迷,mamicode.com
首页 > Web开发 > 详细

22.jquery的事件

时间:2018-02-23 20:50:41      阅读:221      评论:0      收藏:0      [点我收藏+]

标签:mouse   tran   contex   div   ack   run   比较   change   hit   

<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Jquery绑定事件</title>
<script type="text/javascript" src="${pageContext.request.contextPath }/js/jquery-1.8.3.js"></script>
<script type="text/javascript">
	$(function(){
		//比较原始的绑定事件的方式
		/* $("input[type=button]").click(function(){
			alert("aaa");
		}); */
		
		//给按钮绑定事件(可以绑定多个事件)
		$("input[type=‘button‘]").bind("click dbclick",function(){
			//接触绑定(第一次还是会执行)
			$(this).unbind("click");
			alert("cccc")
		});
		
		
		$("table tr").mouseover(function(){
			//移入到某一行
			$(this).css("background-color","yellow");
		});
		
		$("table tr").mouseout(function(){
			//移入到某一行
			$(this).css("background-color","white");
		});
	})
	
	function run1(){
		alert("bbbb");
	}
	
</script>
</head>
<body>

<input type="button" value="点击"/>
<hr/>

<select onchange="run1()">
	<option>北京</option>
	<option>上海</option>
	<option>广州</option>
</select>

<hr/>

<table border="1px" cellpadding="10">
	<tr>
		<td>1</td>
		<td>谢霆锋</td>
		<td>爱王菲</td>
	</tr>
	
	<tr>
		<td>2</td>
		<td>王菲</td>
		<td>爱李亚鹏</td>
	</tr>
	
	<tr>
		<td>3</td>
		<td>李亚鹏</td>
		<td>爱瞿颖</td>
	</tr>
</table>
</body>
</html>

  

22.jquery的事件

标签:mouse   tran   contex   div   ack   run   比较   change   hit   

原文地址:https://www.cnblogs.com/syj1993/p/8463144.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!