如题,想要使用test().a('I'm A.').b('I'm B'),输出test a I'm A b I'm B 该如何定义test?
2 回答
有只小跳蛙
TA贡献1824条经验 获得超8个赞
function test() {
function a(){
console.log(" a I'm A ")
return this
}
function b(){
console.log("b I'm B")
return this
}
console.log('test')
return {
a: a,
b: b
}
}
test().a().b()
jquery 是这方面的老大哥。
添加回答
举报
0/150
提交
取消