我最近学习 jquery 插件。但我有些困惑。比如:
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<script src="http://libs.baidu.com/jquery/1.9.0/jquery.js"></script>
</head>
<body>
<script type="text/javascript">
(function ($){
$.fn.xxx=function(){
console.log("define xxx");
}
})(jQuery)
</script>
</body>
</html>
为什么控制台不打印任何东西?