早教吧 育儿知识 作业答案 考试题库 百科 知识分享

解释下这段JS代码是什么意思啊privatevoidgrdGzlxbItemDataBound(objectsender,System.Web.UI.WebControls.DataGridItemEventArgse){if(e.Item.ItemIndex>=0){e.Item.Attributes["onmouseover"]="this.name=this.style.backgroundColor;

题目详情
解释下这段JS代码是什么意思啊private void grdGzlxb_ItemDataBound(object sender, System.Web.UI.WebControls.DataGridItemEventArgs e) { if(e.Item.ItemIndex >= 0) { e.Item.Attributes["onmouseover"] = "this.name=this.style.backgroundColor;this.style.backgroundColor='#cccccc'"; e.Item.Attributes["onmouseout"] = "this.style.backgroundColor=this.name;"; }
▼优质解答
答案和解析
ItemDataBound函数表示在Repeater控件数据绑定后发生的事件。