为了账号安全,请及时绑定邮箱和手机立即绑定

Chrome浏览器怎么返回是IE盒子模型?

 if ($.support.boxModel) { //是W3C盒子模型

                    strTmp += "W3C盒子模型";

                }

                else { //是IE盒子模型

                    strTmp += "IE盒子模型";

                }


您打开的页面是:IE盒子模型

正在回答

5 回答

<!doctype html>

<html>

<head>

    <title>检测是否是盒子模型</title>

    <script src="http://www.imooc.com/data/jquery-1.8.2.min.js" type="text/javascript"></script>

</head>

<body>

    <div id="divtest">

        <div class="title">

            <span class="fl">检测是否是盒子模型</span> 

        </div>

        <div class="content"></div>

    </div>

    <script type="text/javascript">

        $(function () {

            var strTmp = "您打开的页面是:";

            if ($.support.boxModel) { //是W3C盒子模型

                strTmp += "W3C盒子模型";

            }

            else { //是IE盒子模型

                strTmp += "IE盒子模型";

            }

            $(".content").html(strTmp);

        });

    </script>

</body>

</html>


1 回复 有任何疑惑可以回复我~

<!DOCTYPE HTML>

<html>


0 回复 有任何疑惑可以回复我~

<!DOCTYPE HTML>

<html>

    <head>

        <title>检测是否是盒子模型</title>

        <link href="style.css" rel="stylesheet" type="text/css" />

        <script src="http://www.imooc.com/data/jquery-1.8.2.min.js" type="text/javascript"></script>

    </head>


0 回复 有任何疑惑可以回复我~

加了也是ie的盒子模型为什么


0 回复 有任何疑惑可以回复我~
#1

康振宁

你把加之后的代码贴出来看看,我这为什么加了就是w3c盒子啊
2015-01-21 回复 有任何疑惑可以回复我~

你没有加html标签声明。

<!doctype html>加这个

0 回复 有任何疑惑可以回复我~
#1

用户182770

加了也是ie的盒子模型为什么
2015-01-21 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
jQuery基础课程
  • 参与学习       154768    人
  • 解答问题       7184    个

加入课程学习,有效提高前端开发速度

进入课程

Chrome浏览器怎么返回是IE盒子模型?

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信