它的HTC文件没有下载下来,不过相信原理是差不多的,颜色你可以自己调一下
<script>
function ex(n){Expository1.innerHTML=n;Expository1.style.top=event.clientY+20
if(event.clientX>document.body.clientWidth-172)Expository1.style.left=document.body.clientWidth-250
else if(event.clientX<81)Expository1.style.left=0
else Expository1.style.left=event.clientX-80;Expository1.style.visibility="visible"}
function ex1(){Expository1.style.visibility="hidden"}
</script>
<div id=Expository1 style="position:absolute;z-index:2;width:250;border-style:double;border-color:#FF66FF;background-color:#f0f8ff; visibility:hidden" align=left></div><a href="http://www.csdn.net" onmouseover="ex('...  林诺然 [1]我的生活 我叫林,在上海这个繁华冷漠的城市生活了20年。在我的生活中 ...')" onmouseout=ex1()>显示说明</a>

解决方案 »

  1.   

    <PROPERTY NAME="son" />
    <ATTACH EVENT="onmouseover" ONEVENT="onit()" />
    <ATTACH EVENT="onmousemove" ONEVENT="onit()" />
    <ATTACH EVENT="onmouseout" ONEVENT="noit()" />
    <SCRIPT>function onit() {
    var oSon=window.document.getElementById(son);
    if (oSon==null) return;
    with (oSon) {
    innerText=alt;
    style.display="block";
    style.pixelLeft=window.event.clientX+window.document.body.scrollLeft+6;
    style.pixelTop=window.event.clientY+window.document.body.scrollTop+9;
    }
    }function noit() {
    var oSon=window.document.getElementById(son);
    if (oSon==null) return;
    oSon.style.display="none";
    }</SCRIPT>
    将上述代码存成xx.htc,然后调用<span style="behavior:url(xx.htc)">
      

  2.   

    不用<div>上面的大侠请给一下调用的具体代码。
      

  3.   

    <script language="javascript">
    tPopWait=50;
    tPopShow=5000;
    showPopStep=10;
    popOpacity=100;sPop=null;
    curShow=null;
    tFadeOut=null;
    tFadeIn=null;
    tFadeWaiting=null;document.write("<style type='text/css'id='defaultPopStyle'>");
    document.write(".cPopText {  background-color: green; border: 1px #000000 solid; font-size: 12px; padding-right: 4px; padding-left: 4px; height: 20px; padding-top: 2px; padding-bottom: 2px; filter: Alpha(Opacity=0)}");
    document.write("</style>");
    document.write("<div id='dypopLayer' style='position:absolute;z-index:1000;' class='cPopText'></div>");function showPopupText(){
    var o=event.srcElement;
    MouseX=event.x;
    MouseY=event.y;
    if(o.alt!=null && o.alt!=""){o.dypop=o.alt;o.alt=""};
    if(o.dypop!=sPop) {
    sPop=o.dypop;
    clearTimeout(curShow);
    clearTimeout(tFadeOut);
    clearTimeout(tFadeIn);
    clearTimeout(tFadeWaiting);
    if(sPop==null || sPop=="") {
    dypopLayer.innerHTML="";
    dypopLayer.style.filter="Alpha()";
    dypopLayer.filters.Alpha.opacity=0;
    }
    else {
    if(o.dyclass!=null) popStyle=o.dyclass 
    else popStyle="cPopText";
    curShow=setTimeout("showIt()",tPopWait);
    }

    }
    }function showIt(){
    dypopLayer.className=popStyle;
    dypopLayer.innerHTML=sPop;
    popWidth=dypopLayer.clientWidth;
    popHeight=dypopLayer.clientHeight;
    if(MouseX+12+popWidth>document.body.clientWidth) popLeftAdjust=-popWidth-24
    else popLeftAdjust=0;
    if(MouseY+12+popHeight>document.body.clientHeight) popTopAdjust=-popHeight-24
    else popTopAdjust=0;
    dypopLayer.style.left=MouseX+12+document.body.scrollLeft+popLeftAdjust;
    dypopLayer.style.top=MouseY+12+document.body.scrollTop+popTopAdjust;
    dypopLayer.style.filter="Alpha(Opacity=0)";
    fadeOut();
    }function fadeOut(){
    if(dypopLayer.filters.Alpha.opacity<popOpacity) {
    dypopLayer.filters.Alpha.opacity+=showPopStep;
    tFadeOut=setTimeout("fadeOut()",1);
    }
    else {
    dypopLayer.filters.Alpha.opacity=popOpacity;
    tFadeWaiting=setTimeout("fadeIn()",tPopShow);
    }
    }function fadeIn(){
    if(dypopLayer.filters.Alpha.opacity>0) {
    dypopLayer.filters.Alpha.opacity-=1;
    tFadeIn=setTimeout("fadeIn()",1);
    }
    }
    document.onmouseover=showPopupText;
    </script>
    <span alt="这个效果不错吧!<br><span style=color:red>这个效果不错吧!</span><br><b>这个效果不错吧!</b><br><i>这个效果不错吧!</i>">看看</span>