我的 PhoneGap 2.9.0 应用程序(适用于 Windows Phone 7)中有此代码,但它不起作用。
这是index.js
文件中的代码:
onDeviceReady: function () {
var headertitle = document.getElementById('header1');
headertitle.innerhtml+="phonegap..";
},
.
.
这是index.html
文件中的代码..
<html>
<head>
<body>
<h1 id="header1">hello </h1><br/>
</body>
</head>
</html>
当然,我还在我的index.html
文件中包含了 Javascript。
就这样。