alt的功能相当于title,就是鼠标指向图片的时候显示的信息
dypop应该是一个自定义的属性吧
filters是CSS中的滤镜,查一下CSS文档就知道了
opacity Attribute | Opacity Property  Internet Development Index --------------------------------------------------------------------------------Sets or retrieves the opacity level at the beginning of the gradient applied with the Alpha filter. SyntaxHTML { filter:progid:DXImageTransform.Microsoft.Alpha(
    opacity = iOpacity ... ) ... } 
Scripting object.filters.item(
    "DXImageTransform.Microsoft.Alpha").Opacity [ = iOpacity ] Possible ValuesiOpacity Integer that specifies or receives the opacity level. The value can range from 0 (fully transparent) to 100 (fully opaque). 0 Default. Transparent. 
100 Opaque. 
 The property is read/write. The property has a default value of 0.

解决方案 »

  1.   

    <BODY>
    <A HREF="test.html" title="test" alt="55555555">testall</A>
    </BODY>
    </HTML>
    <SCRIPT LANGUAGE="JavaScript">
    <!--
    function showPopupText(){
    var o=event.srcElement;
    MouseX=event.x;
    MouseY=event.y;
    if(o.alt!=null && o.alt!=""){o.dypop2=o.alt;o.alt=""};//////////o.alt是什么意思呀?????? 
        if(o.title!=null && o.title!=""){o.dypop2=o.title;o.title=""};//o.dypop什么意思呀??
    }
    document.onmouseover=showPopupText;//-->
    </SCRIPT>
    o.alt o.title 相当于a 里面的 alt ttitle
    o.dypop 应该是自定义的属性 你可以更改别的名字dypopLayer.filters.Alpha.opacity 
    dypopLayer 应该是一个对象, 参考OBJECT 对象的属性