62,243
社区成员




<script type="text/javascript">
function Show(pp, xh, note)
{
document.getElementById("td1").innerText="品牌:" + pp ;
document.getElementById("td2").innerText="型号:" + xh;
document.getElementById("td3").innerText="备注:" + note ;
//document.getElementById("td3").innerText="" + "";
x = event.clientX + document.body.scrollLeft;
y = event.clientY + document.body.scrollTop + 30;
div1.style.display="block";
div1.style.left = x;
div1.style.top = y;
}
function Hide()
{ div1.style.display="none";
}
</script>
e.Row.Attributes.Add("onMouseOver", "Show('" + aaa + "', '" + bbb + "', '" + ccc + "');");
e.Row.Attributes.Add("onMouseOut", "Hide();");