一聚教程网:一个值得你收藏的教程网站

最新下载

热门教程

一个改变最后选中datagrid的Color的javascript

时间:2008-01-19 编辑:简简单单 来源:一聚教程网

var Supplier_LastSelectRowId = "";
function Supplier_selectRow(sender)
{ if(Supplier_LastSelectRowId != "") { var lastSelectRow = window.document.getElementById(Supplier_LastSelectRowId); if (lastSelectRow != null) { lastSelectRow.runtimeStyle.backgroundColor = ""; } } var selectRow = Supplier_GetParentElementByTagName(sender, "TR"); //window.document.getElementById(sender.id); if (selectRow != null) { selectRow.runtimeStyle.backgroundColor = "#CAD3E4"; Supplier_LastSelectRowId = selectRow.id; //sender.id; //SupplierName.innerHTML = sender.innerHTML; } }
function Supplier_GetParentElementByTagName(element, tagName) { var element=element; while(element.tagName != tagName) element = element.parentNode; return element; }

热门栏目