第08章 基础事件(上)

index.html

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>基础事件</title>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="demo.js"></script>
<link type="text/css" rel="stylesheet" href="style.css" />
</head>
<body>

<!--input type="button" value="按钮" /-->
<!--input type="text" value="按钮" /-->
<form>
<input type="submit" value="按钮" />
</form>
<div style="height:2000px;"></div>

</body>
</html>

demo.js

$(function(){
	/*
	$('input').bind('click',function(){
		alert('弹窗!');
	});
	
	$('input').bind('click',fn);
	function fn(){
		alert('处理函数!');
	};
	
	$('input').bind('click mouseover',function(){
		alert('弹窗!');
	});
	
	$('input').bind('mouseover mouseout',function(){
		$('div').html('123');
	});
	
	$('input').bind('mouseover mouseout',function(){
		$('div').html(function(index,value){
			return value +'1'+index;
		});
	});
	
	$('input').bind({
		mouseover:function(){
			alert('移入');
		},
		mouseout:function(){
			alert('移出');
		}
	});
	
	$('input').bind('click',fn1);
	$('input').bind('click',fn2);
	function fn1(){
		alert('fn1');
	}
	function fn2(){
		alert('fn2');
	}
	//$('input').unbind(); //删除全部事件
	//$('input').unbind('click');//只删除 click 事件
	$('input').unbind('click',fn2);//删除 click 事件绑定了 fn2 的
	
	$('input').click(function(){
		alert('单击');
	});
	
	$('input').dblclick(function(){
		alert('双击');
	});
	
	$('input').mousedown(function(){
		alert('鼠标左键按下');
	});
	
	$('input').mouseup(function(){
		alert('鼠标左键按下弹起');
	});
	
	$(window).unload(function(){//一般 unload 卸载页面新版浏览器应该是不支持的,获取要设置一个权限
		alert('1');//一般用于清理的工作。
	});
	
	$(window).resize(function(){
		alert('文档改变了');
	});
	
	$(window).scroll(function(){
		alert('滚动条改变了');
	});
	
	$('input').select(function(){
		alert('文本选定');
	});
	
	$('input').change(function(){
		alert('文本改变');
	});
	*/
	
	$('form').submit(function(){
		alert('表单提交!');
	});	
});

猜你喜欢

转载自onestopweb.iteye.com/blog/2224276