首页 > 编程语言 > 详细

12JavaScript Dom动态设置元素的float样式

时间:2016-01-07 23:01:11      阅读:419      评论:0      收藏:0      [点我收藏+]
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
    <title></title>
    <style type="text/css">
        div {
            width: 300px;
            height: 200px;
            background-color: Yellow;
        }
    </style>
    <script type="text/javascript">
        onload = function () {
            //操作float样式的时候,IE与其他浏览器不太一样。
            //IE:obj.style.styleFloat=‘right’;
            //其他浏览器:obj.style.cssFloat=‘right’;
            document.getElementById(‘btn‘).onclick = function () {
                var dvObj = document.getElementById(‘dv‘);
                if (typeof (dvObj.style.styleFloat) == ‘string‘) {
                    //是IE
                    dvObj.style.styleFloat = ‘right‘;
                } else {
                    //不是IE
                    dvObj.style.cssFloat = ‘right‘;
                };
            };
        };

    </script>

</head>
<body>
    <input type="button" name="name" value="浮动" id="btn" />
    <div id="dv">
    </div>
</body>
</html>

  

12JavaScript Dom动态设置元素的float样式

原文:http://www.cnblogs.com/clcloveHuahua/p/5111527.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!