我有兴趣使用“onmouseover”事件使列表框出现和消失。我对 ASP.NET 很陌生,我还不想写 javascript。我正在尝试使用以下代码,它的颜色更改部分有效,但列表框可见性不起作用:
if (!IsPostBack) { Button2.Attributes.Add("onmouseover", "this.style.backgroundColor='Red', ListBox3.style.visibility='visible'"); }
if (!IsPostBack)
{
Button2.Attributes.Add("onmouseout", "this.style.backgroundColor='Blue', ListBox3.style.visibility='hidden'");
}
我已经尝试过使用和不使用“PostBack”的代码,但仍然没有运气。有人看到我的代码在哪里失败了吗?
谢谢,
DFM