<script>
aaa = {
a : 1,
b : 2,
c : 3,
}
aaa.goto = function(x,y,z){
console.log(x+y+z)
}
aaa.goto(aaa.a,aaa.b,aaa.c)
</script>
aaa = {
a : 1,
b : 2,
c : 3,
}
aaa.goto = function(x,y,z){
console.log(x+y+z)
}
aaa.goto(aaa.a,aaa.b,aaa.c)
</script>
2017-05-12
$.each(slides,function () {
this.css({width:width + 'px',height:height + 'px'})
})
这样就可以了吧
this.css({width:width + 'px',height:height + 'px'})
})
这样就可以了吧
2017-05-10