让我们来看一个简单的例子,在这里将鼠标事件绑定在虚拟的音乐键盘的键上。代码清单4-1定义了一个包含原始文档结构的简单页面。
代码清单4-1 musical.html
!DOCTYPE html
PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"
html
head
titleKeyboard/title
link rel='stylesheet' type='text/css' href='musical.css'/
script type='text/javascript' src='musical.js'/script
script type='text/javascript'
window.onload=assignKeys;
/script
/head
body
[ 查看全文 ]