JS控制图片在左下角,右下角
作者:朱尚 / 日期:2014-01-17 / 分类:JavaScript / 浏览:2355
<script>
    var isie6 = window.XMLHttpRequest ? false : true;
    window.onload = function () {
        var a = document.getElementById('popic');
        var d = document.getElementById('d');
        if (isie6) {
            a.style.position = 'absolute';
 
            window.onscroll = function () {
                d.innerHTML = '';
            }
        } else {
            a.style.position = 'fixed';
        }
        a.style.left = '0';
        a.style.bottom = '0';
    }
</script>
<div id="d" style="display: none;">
    rgrrrrrrrr</div>
<div id='popic' style="z-index: 99999">
    <img style="width: 120px; height: 120px;" src="Upload/qrcode.png">
</div>

点击预览

上一篇:使用jquery 获取RadioButtonList 中选中值
下一篇:JS代码不兼容,在ie里可以
本文标签: 浮动 漂浮 左下角
本文链接:http://www.banzhuan.net/detail/89