如题,想要使用test().a('I'm A.').b('I'm B'),输出test a I'm A b I'm B 该如何定义test?
芜湖不芜
浏览 467回答 2
2回答
有只小跳蛙
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 是这方面的老大哥。