jQuery基础----23jQuery扩展-jQuery扩展

来源:互联网 发布:西城区2016年经济数据 编辑:程序博客网 时间:2024/06/11 09:18
<!DOCTYPE html><!--jQuery扩展-jQuery扩展--><html><head lang="en">    <meta charset="UTF-8">    <title></title>    <script src="jquery-2.1.4.min.js"></script>    <!--引入扩展的jquery文件-->    <script src="js03_03.js"></script>    <script src="js03.js"></script></head><body>    <div></div></body>

</html>

js1:

/** * Created by hao on 2015/8/16. */$(document).ready(function(){    //$.myjq();    $("div").myjq();})
js2:

/** * Created by hao on 2015/8/16. *///扩展jquery的js文件$.myjq=function(){    alert("扩展文件。。。。。。")}$.fn.myjq=function(){    $(this).text("另一种扩展方式。。。。。。");}

0 0
原创粉丝点击