是针对不同的浏览器的兼容
event是firefox或其他浏览器,window.event是IE系列的
因为在firefox浏览器中event是局部变量
//绑定ts的鼠标移动事件,event是JS事件内置对象
ts.onmousemove = function(event){ //逻辑运算,//问当前事件对象是Firefox的事件对象还是IE的事件对象,//返回值为boolean类型trueevent = event || window.event;