AspNet技术

.Net平台 + C#语言 + Microsoft SQL Server 开发互联网之web应用!

[原]超链接显示图片

window.onload = function () {
            document.getElementById('ak').onmouseover = function () {

                if (!document.getElementById('imxy')) {
                    var im = document.createElement('img');
                    im.id = 'imxy';
                    im.src = 'aa.jpg';
                    im.style.position = 'absolute';
                    var x = this.offsetLeft + 'px';
                    var y = this.offsetTop + this.offsetHeight + 'px';

                    im.style.left = x;
                    im.style.top = y;
                    document.body.appendChild(im);
                }
            };
            document.getElementById('ak').onmouseout = function () {
                if (document.getElementById('imxy')) {
                    document.body.removeChild(document.getElementById('imxy'));
                }
            };
        };

posted on 2014-04-26 22:22  Seves2015  阅读(253)  评论(0编辑  收藏  举报

导航