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

黑马day18 JQuery自定义插件

时间:2015-07-16 12:01:25      阅读:178      评论:0      收藏:0      [点我收藏+]

标签:jquery

说明:使用JQuery中的JQuery.extend({//这里是json格式的数据});可以定义一个全局函数

使用JQuery中的JQuery.fn.extend({//这里是json格式的数据});可以定义一个局部函数

1.定义全局函数(来判断两个输入的数字的最大值和最小值)

test.html

<!DOCTYPE html>
<html>
  <head>
    <title>test.html</title>
	
    <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
    <meta http-equiv="description" content="this is my page">
    <meta http-equiv="content-type" content="text/html; charset=UTF-8">
	<!-- 引入jQuery文件 -->
    <script src="../../js/jquery-1.4.2.js"></script>
	<!-- 引入jQuery的插件文件 -->
	<script src="test.js"></script>
  </head>
  <script type="text/javascript">
  	$(function(){
		$("input").click(function(){
			var a=prompt("请输入一个数字");
			var b=prompt("请输入一个数字");
			var min=$.minValue(a,b);
			var max=$.maxValue(a,b);
			alert("最大值是"+max+"最小值是"+min);
			
		});
	})
	
  </script>
  <body>
    <input type="button" value="jQuery插件扩展测试">
  </body>
</html>
test.js

jQuery.extend({
	minValue:function(a,b){
		return a<b?a:b;
	},
	maxValue :function(a,b){
		return a>b?a:b;
	}
});

结果演示:

技术分享技术分享

技术分享

2.自定义局部函数(提示当前元素中value的值)
test.html

<!DOCTYPE html>
<html>
  <head>
    <title>test.html</title>
	
    <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
    <meta http-equiv="description" content="this is my page">
    <meta http-equiv="content-type" content="text/html; charset=UTF-8">
    <script src="../../js/jquery-1.4.2.js"></script>
	<script src="test.js"></script>
  </head>
  <script type="text/javascript">
  	$(function(){
		$("input").click(function(){
			//this指代页面元素input标签
			$(this).test();
		});
	})
  </script>
  <body>
    <input type="button" value="jQuery插件扩展测试">
  </body>
</html>
test.js

////测试extend()方法
jQuery.fn.extend({
	test : function(){
		//谁调用test()方法,打印谁的value属性值
		//this指代DOM对象还是jQuery对象?jQuery对象
		//jQuery对象是数组对象,数组可以遍历
		$.each(this,function(){
			alert($(this).val());
		});
	}
});
结果演示:

技术分享



版权声明:本文为博主原创文章,未经博主允许不得转载。

黑马day18 JQuery自定义插件

标签:jquery

原文地址:http://blog.csdn.net/u014010769/article/details/46907015

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