嘿,有一些帖子主要讨论Sencha Touch和jQtouch.
据我所知,Sencha更适合重型应用.请阅读此处:http://9-bits.com/post/723711597/jqtouch-and-sencha-touch
但是GWT mobile与XUI vs. jQuery Mobile怎么样?有人测试过吗?GWT手机看起来相当不错......但我还没有深入挖掘.还有其他好的移动开发框架吗?
我试图让javascript框架XUI工作,但无法让它在任何桌面浏览器上工作.更多关于XUI的信息...... http://xuijs.com/documentation
<script type='text/javascript' src='xui-more-1.0.0.min.js'></script>
<!-- <script type='text/javascript' src='xui-bb-1.0.0.min.js'></script> -->
<script>
x$('button').click(function(e){
alert('tee hee!');
});
x$('a.navigation').css({ background:'yellow' });
alert("at least this works!");
</script>
<a href='http://google.com' class='navigation' >this is a link</a>
<br><br>
<input type='button' id='button' value='click me!'>
Run Code Online (Sandbox Code Playgroud)