我打開一個使用window.open(「page.aspx」)在Phonegap中的ASPX頁面。它開幕罰款。但是,如何禁用該頁面的縮放? 我試過使用 但這並沒有幫助。 這裏是我的index.html禁用放大phonegap
<!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>