摘要:
1.应用案例: 复制代码 代码如下:var Mouse = function () { // Look! no that = this! this.position = [0, 0]; if (document.addEventListener) { document.addEventListener('mousemove', ?); //this.move? } else if (document.attachEvent) { document.attachEvent("onmousemove", ?); //this.move?怎么放进去 } }; Mo 阅读全文
posted @ 2012-10-05 11:56
柠茶
阅读(281)
评论(0)
推荐(0)