吾爱破解 - 52pojie.cn

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

查看: 1337|回复: 4
收起左侧

[已解决] 【JS】查询当前css属性遇到问题

[复制链接]
thepoy 发表于 2019-11-12 16:29
本帖最后由 thepoy 于 2019-11-12 16:47 编辑

代码如下:
[HTML] 纯文本查看 复制代码
<!DOCTYPE html>
<html>
        <head>
                <meta charset="utf-8">
                <title></title>
                <style type="text/css">
                        #box1{
                                width: 200px;
                                height: 200px;
                                background: orange;
                        }
                </style>
                <script type="text/javascript">
                        window.onload = function(){
                                var box1 = document.getElementById("box1");
                                var btn01 = document.getElementById("btn01");
                                btn01.onclick = function(){
                                        alert(box1.currentStyle.width);
                                        // alert("hello");
                                }
                        }
                </script>
        </head>
        <body>
                <button type="button" id="btn01">Submit</button>
                <div id="box1"></div>
        </body>
</html>



点按钮就报错:
屏幕快照 2019-11-12 下午4.28.50.png


已解决:
currentStyle 方法只能在IE中起作用,其他浏览器不支持。

点评

用JQUERY  发表于 2019-11-12 21:08

发帖前要善用论坛搜索功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。

傻瓜也会长大 发表于 2019-11-12 16:31
谢谢楼主
414269678 发表于 2019-11-12 16:32
qingyuA 发表于 2019-11-12 16:45
您需要登录后才可以回帖 登录 | 注册[Register]

本版积分规则

返回列表

RSS订阅|小黑屋|处罚记录|联系我们|吾爱破解 - LCG - LSG ( 京ICP备16042023号 | 京公网安备 11010502030087号 )

GMT+8, 2024-11-27 00:47

Powered by Discuz!

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表