Html程序  |  50行  |  1.01 KB

<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>Payment Confirmation Page</title>

<style>
body {
  background: -webkit-gradient(linear, left top, left bottom,
              from(#EBEBEB), to(#CFCFCF));
  font-family: 'Lucida Grande', Helvetica, sans-serif;
  font-size: 10px;
  height: 300px;
  overflow: hidden;
}
</style>

<script src="connection_manager.js"></script>
<script>
function $(id) {
  return document.getElementById(id);
}

chromeos.connectionManager.getDeviceInfo(function(device) {
  $('device-info').innerHTML =
    'carrier = ' + device.carrier + '<br>' +
    'MEID = ' + device.MEID + '<br>' +
    'IMEI = ' + device.IMEI + '<br>' +
    'IMSI = ' + device.IMSI + '<br>' +
    'ESN = ' + device.ESN + '<br>' +
    'MDN = ' + device.MDN;
});

function sendStatus(status) {
  chromeos.connectionManager.setTransactionStatus(status,
      function() {});
}

</script>

</head>
<body>
<h2>Plan Confirmation Page<h2>
Thank you.  Your payment was received.
<script>
sendStatus('OK')
</script>
</body>
</html>