<script>
(function() {
$('html').addClass('js');
var contactForm = {
container: $('#contact'), <-- THIS COMMA
init: function() {
$('<button></button>', {
text: 'Contact Me'
})
.insertAfter('article:first')
.on('click', this.show);
}, <---------------------------------- AND THIS COMMA
show: function() {
contactForm.container.show();
}
};
contactForm.init();
})();
</script>
在上面的脚本中,我注意到:
container: $('#contact'),
这是声明变量的一种方法吗?执行以下操作会破坏脚本:
var container = $('#contact');
此外,init 函数和容器变量(如果它是变量)后面的逗号是什么?