Mouseover无法处理image_tag

时间:2014-11-11 18:37:43

标签: onmouseover

我想在鼠标悬停事件上显示不同的图像。 这是我的代码(haml):

  = image_tag(product.photos.first.asset.thumb.url, :onMouseover=> "this.src=product.photos.second.asset.thumb.url'", :onMouseout=> "this.src=product.photos.first.asset.thumb.url'")

但是我一直在"未捕获的SyntaxError:意外的令牌ILLEGAL"在那条线上。

有关我做错什么的任何建议?谢谢!

1 个答案:

答案 0 :(得分:0)

这是解决方案:

      = image_tag(product.photos.first.asset.thumb.url, :onMouseover=> "this.src='#{product.photos.second.asset.thumb.url}'", :onMouseout=> "this.src='#{product.photos.first.asset.thumb.url}'")