javascript的继承,一个简单的乒乓球游戏

$(document).ready(function() { //球的类 var Ball = function(x, y) { this.X = x; this.Y = y; this.style = { width : "5px", height : "5px", color : "#E00" }; this.dire
相关文章
相关标签/搜索