在Head中添加元标记不适用于Window Phone

时间:2014-05-06 08:25:28

标签: javascript windows internet-explorer-10 metatag

我有一个简单的javascript代码,负责在头部添加元标记..它适用于Iphone,但不适用于窗口手机。任何帮助

<html>
<head>

    <title>Hi there</title>
    <script type="text/javascript" src="jquery.js"></script>
    <script>
        (function () {
            if ( navigator.userAgent.match(/IEMobile\/10\.0/)) {
                $("head").append('<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1, user-scalable=no" />');
                alert("done");
            }
        })();
    </script>
</head>
<body>
    <div style="width:100%; height:100px; background:green; color:white;">
        Hi this is just the sample
    </div>
</body>


</html>

0 个答案:

没有答案