以下是我的jQuery函数,请尽可能纠正,让我知道我在哪里错误。
$("#id").click(function() {
start : appendLayout(this.id) // invoking another function to do and this part is working.
stop : (function(){
if(true){ alert("please create project"); }
} ) // not working, getting error in firbug console if i change anything
});
答案 0 :(得分:1)
你想做什么?您正在函数中创建一些属性,而不是对象。
这是错误的:
function() {
firstName: 'Saeed',
lastName: 'Neamati'
});
这是创建对象的正确方法:
var person = {
firstName: 'Saeed',
lastName: 'Neamati'
}
只需调用函数并在函数内编写简单的JavaScript语句:
$("#id").click(function() {
appendLayout(this.id);
if(true){ alert("please create project"); }
});