锋利的jQuery初学(2)

js与jq事件处理程序区别:

  1,事件源;

      document.getElementById('id');

      $("#id")

  2,事件;

      document.getElementById('id').onclick;

      $("#id").click

  3,事件处理程序;

      document.getElementById('id').onclick=function(){ }

      $("#id").click(function(){ });

  基本事件使用案例:

    

 <!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>jQuery基本使用</title>
<style>
#div1{ height:200px; background:#666;}
</style>
<!-- 引入包 -->
<script src="../../jQuery包/jquery-3.2.1/jquery-3.2.1.min.js"></script>
<script>
//函数入口
$(document).ready(function() {
//事件程序
$("#but1").click(function(){
$("#div1").hide();
});
});
</script>
</head> <body>
<input type="button" id="but1" value="按钮"/>
<div id="div1"></div>
</body>
</html>
上一篇:ssh keygen命令实现免密码通信(git库获取操作权限:开发人员添加到git库中,获取操作权限)


下一篇:锋利的jQuery初学(1)