以下是引用片段: /*替换图片CSS*/ #imgScript { /*这里使用对象ID来通配样式, 也可以定义一个CSS函数*/ star:Expression( onmouseover = function() { /*替换图片*/ if(this.hover != null){ this.name = this.src; this.src = this.src.replace('.jpg', '_over.jpg'); this.HasChg = 1; } }, onmouseout = function() { /*还原本来的图片*/ if(this.HasChg != null){ this.src = this.name; this.HasChg = null; } } ) }/*end imgScript*/ |