dojo mobile模板

来源:互联网 发布:八皇后问题算法 编辑:程序博客网 时间:2024/04/29 14:47
<!DOCTYPE html>
<html>
  <head>
    <title>index.html</title>
     <meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,minimum-scale=1,user-scalable=no"/>
     <meta name="apple-mobile-web-app-capable" content="yes" />
    <meta name="content-type" content="text/html; charset=UTF-8">
    <link href="dojox/mobile/themes/iphone/iphone.css" rel="stylesheet"></link>
     <script src="dojo/dojo.js" data-dojo-config="async:true, parseOnLoad:true"></script>
    <script type="text/javascript" src="dojox/mobile/deviceTheme.js"></script>
    
    <script type="text/javascript">
        require([
             "dojox/mobile/parser",
             "dojox/mobile",  
             "dojox/mobile/compat"  
           ], function(parser, mobile, compat){
            
        });
    </script>

  </head>
 
  <body>
  
  </body>
</html>

0 0