关于phonegap+sencha touch开发的基础问题!!
小弟新手,刚刚配好了环境。
按照网上的教程 写好了index.html
<!DOCTYPE html> <html> <head> <title>SenchaTest</title> <!-- Sencha Touch work --> <link rel="stylesheet" type="text/css" href="sencha-touch-2.0.1.1/resources/css-debug/sencha-touch.css" /> <script type="text/java" src="sencha-touch-2.0.1.1/sencha-touch-debug.js"></script> <script type = "text/java" src = "js/cordova-1.9.0.js"></script> <script type="text/java" src="js/app.js"></script> </head> <body></body> </html>
Ext.regApplication({ name: 'App', launch: () { Ext.msg.alert("Yay, it's working!");//alert("Yay, it's working!"); 这个也不行 }});