JQuery Mobile does not work on Android 5.0(lollipop)

JQuery Mobile does not work on Android 5.0(lollipop)

Hi,
Since I can not speak English , I use google translation.
I am using JQuery mobile to my web site.
It works normally in Iphone(ios8.3).
However , it does not work properly in Android5.0.2(lollpop).

I was a test by creating a simple web site.

screenshots:
ios8.3

Android5.0.2



It will also be displayed in the same manner other web page you are using JqueryMobile In Android5.0.2.
My web page is using JQuery1.3.2.
However , trouble in Android happens even JQuery1.4.5.
code:
  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.         <title>title</title>
  5.         <meta charset="utf-8">
  6.         <meta name="viewport" content="width=device-width">
  7.         <link rel="stylesheet" href="//code.jquery.com/mobile/1.3.2/jquery.mobile-1.3.2.min.css">
  8.         <script src="//code.jquery.com/jquery-1.10.2.min.js"></script>
  9.         <script src="//code.jquery.com/mobile/1.3.2/jquery.mobile-1.3.2.min.js"></script>
  10.     </head>
  11.     <body>
  12.         <div data-role="page">
  13.             <header data-role="header">
  14.                 <h1>title</h1>
  15.             </header>
  16.             <div data-role="content">
  17.                 <a data-role="button">test</a>
  18.             </div>
  19.             <footer data-role="footer">
  20.                 <h1>foot</h1>
  21.             </footer>
  22.         </div>
  23.     </body>
  24. </html>
Please tell me why such a problem occurs .
Thank you very much in advance.