为什么测试一中的alert会被调用两次?
$('h2').mousemove(function(e) {
alert('触发h2元素绑定的mousemove')------在H2对象上调用了一次
})
$("button:eq(0)").click(function(e) {
$('h2').mousemove() //指定触发绑定的事件------在这里又调用了上面的函数一次