ASP.NET / Java - 我正在尝试使用ImageButton onClick事件来交换图像

时间:2010-06-29 16:09:16

标签: asp.net javascript

我有一个由ImageButtons组成的导航栏,鼠标在鼠标移开时将图像换掉。我在Page_Load处理程序中使用此代码来执行此操作:

ImageButton1.Attributes.Add("OnMouseOver", "this.src='mouseover.gif'")
ImageButton1.Attributes.Add("OnMouseOut", "this.src='mouseout.gif'")

我现在要做的是在单击按钮并将其带到页面时加载鼠标悬停图像。我试过这个,但它不起作用:

ImageButton1.Attributes.Add("OnClick", "this.src='mouseover.gif'")

有谁知道我怎么能让这个工作?感谢。

1 个答案:

答案 0 :(得分:0)

尝试使用OnClientClick