数组:
var cake = {
selectors : {
'.this-is-a-class' : {
type:'color'
}
}
};
Run Code Online (Sandbox Code Playgroud)
推动:
cake.push({
selectors: {
'.cake-in-orlando' : {
color : 'red'
}
}
});
Run Code Online (Sandbox Code Playgroud)
错误:
未捕获的TypeError:cake.push不是函数