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>