window.open("page.aspx") を使用して Phonegap で ASPX ページを開いています。元気に開いています。しかし、そのページのズームを無効にするにはどうすればよいでしょうか? 使ってみました しかし、これは役に立ちませんでした。ここに私のindex.htmlがあります
<!DOCTYPE html>
<html>
<head>
<title>InAppBrowser.close Example</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum- scale=1.0, user-scalable=no" />
<script type="text/javascript" charset="utf-8" src="cordova-2.5.0.js"></script>
<script type="text/javascript" charset="utf-8">
document.addEventListener("deviceready", onDeviceReady, false);
function onDeviceReady() {
var ref = window.open('http://google.com/', '_blank', 'location=no');
}
</head>
<body>
</body>
</html>