jQuery插件开发基础1

插件1:

jquery.plugindemo1.js

=================================================

jQuery.Demo1 = function(param) {

alert('This is a test. This is only a test.'+param);
}; 

=============================================

 

调用:

<script type="text/javascript">
    $(function(){
        $.Demo1("xxx");
    });
    </script>

posted @ 2008-10-08 12:52  herobeast  阅读(323)  评论(0编辑  收藏  举报