我有一个简单的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>