<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>jQuery Mobile 滑動換頁</title> <link rel="stylesheet" href="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css" /> <script src="http://code.jquery.com/jquery-1.11.1.min.js"></script> <script src="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script> <script> $(function(){ $("#page1").bind("swipeleft",function(){ $.mobile.changePage("#page2"); }); $("#page2").bind("swiperight",function(){ $.mobile.changePage("#page1"); }); }); </script> </head> <body> <center> <div data-role="page" id="page1"> <h1>第一頁 往左滑</h1> </div> <div data-role=...