我正在phonegap android中开发一个应用程序。
我正在尝试准备好设备上的设备宽度。我试过这段代码。
第一次应用程序开始提供(480,我使用的是 samsung i9003)宽度(警报),当我点击后退按钮并再次运行应用程序时,它显示 320。
我被困在这里..请帮忙
<!DOCTYPE HTML>
<html>
<head>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="format-detection" content="telephone=no" />
<meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width, height=device-height, target-densitydpi=device-dpi" />
<meta name="viewport" content="width=device-width; user-scalable=no" />
<link rel="stylesheet" href="css/jquery.mobile-1.1.1.css" />
<link rel="stylesheet" type="text/css" href="css/index.css" />
<title>Title</title>
</head>
<body onload="onLoad()">
<div class="logo"></div>
<div class="content">
<div id="justt"></div>
</div>
<script type="text/javascript" src="cordova-2.2.0.js"></script>
<script src="js/jquery.js"></script>
<script type="text/javascript" charset="utf-8">
function onLoad() {
document.addEventListener("deviceready", onDeviceReady, false);
}
function onDeviceReady() {
var width=0;
width=$(window).width()
$('#justt').css('width',(width)+'px');
alert(width);
}
</script>
</body>
</html>