JQMobile引入外部CSS,JS文件

使用CDN

 1 <!DOCTYPE html> 
 2 <html> 
 3 <head> 
 4     <title>html5</title> 
 5     <meta name="viewport" content="width=device-width, initial-scale=1"> 
 6     <link rel="stylesheet" href="http://code.jquery.com/mobile/1.3.2/jquery.mobile-1.3.2.min.css" />
 7     <script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
 8     <script src="http://code.jquery.com/mobile/1.3.2/jquery.mobile-1.3.2.min.js"></script>
 9 </head> 
10 <body> 
11 
12 
13     
14 </body>
15 </html>

http://api.jquerymobile.com/

原文地址:https://www.cnblogs.com/cocoajin/p/3358534.html