87,997
社区成员




<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<body>
<table width="50%" height="186" id=tb1>
<tr>
<td width="50%" ><br>
<div onmouseout="disdiv1(this)" id="div0" style='display=none;background-color:#DFE8F6; width:500; height:400' >
<a href="mailto:freesky75@126.com"><span style="color:#FF00BB; font:bold Arial, Helvetica, sans-serif ; font-size: 20px">freesky75@126.com </span></a>
</div>
<span onMouseOver="div1(this)" id='span0' >
邮箱:freesky75@126.com </span>
</a>
</td>
</tr>
</table>
<script language="JavaScript">
function div1(data)
{
document.getElementById('div0').style.display='block';
document.getElementById('div0').focus();
}
function disdiv1(data)
{
data.style.display='none';
}
</script>
</body>
</html>
function stopBubble(e){
//非ie的
if(e&& e.stopPropagation)
e.stopProgpagation();
else
window.event.cancelBubble=true;
}
<table width="50%" height="186" id=tb1>
<tr>
<td width="50%" ><br>
<div onmouseout="disdiv1(event, this)" id="div0" style='display=none;background-color:#DFE8F6; width:500; height:400' >
<a href="mailto:freesky75@126.com"><span style="color:#FF00BB; font:bold Arial, Helvetica, sans-serif ; font-size: 20px">freesky75@126.com </span></a>
</div>
<span onMouseOver="div1(this)" id='span0' >
邮箱:freesky75@126.com </span>
</a>
</td>
</tr>
</table>
<script language="JavaScript">
//兼容FF
HTMLElement.prototype.contains = function(element) {
if (element == this) return true;
while (element = element.parentNode) if (element == this) return true;
return false;
}
function div1(data)
{
document.getElementById('div0').style.display='block';
document.getElementById('div0').focus();
}
function disdiv1(e, data)
{
e = e || window.event;
var related = e.toElement ? e.toElement : e.relatedTarget;
if(data.contains(related)) return;
data.style.display='none';
}
</script>