我在这里尝试一些代码,
var cat={
col:"Red",
getCol:function(){
document.writeln(this.col);
}
}
function getCol(){
document.writeln(cat.col);
}
$(function(){
$("#button1").click(cat.getCol);
$("#button2").click(getCol);
})
但是我得到undefined
了button1,button2得到了“红色”。有人能告诉我为什么吗?
如果我把它改成$("#button1").click(cat.getCol());
,我得到了我需要的“红色”......