摘要: function keypressed() { var nShiftState = 0; if (event.shiftKey) nShiftState += 1; if (event.ctrlKey) nShiftState += 2; if (event.altKey) nShiftState += 4; keyboradProcess(event.keyCode, nS... 阅读全文
posted @ 2010-06-10 18:03 纽奈 阅读(142) 评论(0) 推荐(0)
摘要: 今天看完一次基础不分,然后直奔手中的现成的项目来研究其用法。先来记记今天的一些收获吧 parent.frames['topFrame']该网页含多个frame,parent.frames['topFrame']就可以取到名为'topFrame'的那个网页!What's prototype pattern?Specify the kinds of objects to create using a ... 阅读全文
posted @ 2010-06-09 22:12 纽奈 阅读(171) 评论(1) 推荐(0)