文章列表
var y, x; // y=undefined,x=undefined
y = 1; // y=1
y = typeof x; // y="undefined"
x = y; // x="undefined"
// The userConfig is shared here:
$.fn.plugin = function(userConfig){
userConfig = $.extend({
content: 'Hello user!'
}, userConfig);
return this.html(useConfig.content);
});