跨平台移动开发_Windows 8平台使用 PhoneGap 方法_.NET_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > .NET > 跨平台移动开发_Windows 8平台使用 PhoneGap 方法

跨平台移动开发_Windows 8平台使用 PhoneGap 方法

 2013/11/9 11:56:02  小念头  博客园  我要评论(0)
  • 摘要:原文地址:UsingPhoneGapinWindows8StoreApplications下载phonegap2.9.1下载地址:https://codeload.github.com/phonegap/phonegap/zip/2.9.1点击下载源代码1.创建JavaScript空白应用程序将项目中default.html修改为index.html2.在项目中,双击打开package.appxmanifest文件将startpagedefault.html修改为index.html3
  • 标签:Windows 方法 使用 开发 跨平台

原文地址:

Using PhoneGap in Windows 8 Store Applications

class="p0" style="margin-top: 0pt; margin-bottom: 0pt;">下载phonegap 2.9.1

下载地址: https://codeload.github.com/phonegap/phonegap/zip/2.9.1

 

点击下载源代码

 

1.创建 JavaScript 空白应用程序

将项目中default.html 修改 index.html 

 

 

2.在项目中,双击打开package.appxmanifest文件将start page default.html 修改 index.html

 

3.导入cordova.jsjs文件夹,在index.html页面添加

 

4.在body标签里面加上script

 

javascript;gutter:true;"><script type="text/javascript">
        console.log("Subscribing top deviceready event……");
        document.addEventListener("deviceready",function(){
        navigator.notification.alert("This device is ready");
        });
 </script>

 

5.获取开发许可证,调试运行

 

6.PhoneGap Windows8 环境

 

 

发表评论
用户名: 匿名