案例:jquery Mobile案例     状态:可编辑再运行    进入横版
x
 
1
<!DOCTYPE html>
2
<html>
3
<head>
4
<link rel="stylesheet" href="/js/jquery.mobile-1.3.2.min.css">
5
<script src="/js/jquery-1.8.3.min.js"></script>
6
<script src="/js/jquery.mobile-1.3.2.min.js"></script>
7
<script>
8
$(document).on("pageinit",function(event){
9
  $(window).on("orientationchange",function(){
10
    if(window.orientation == 0)
11
    {
12
      $("p").text("方向已经变为 portrait !").css({"background-color":"yellow","font-size":"300%"});
13
    }
14
    else
15
    {
16
      $("p").text("方向已经变为 landscape !").css({"background-color":"pink","font-size":"200%"});
17
    }
18
  });                   
19
});
20
</script>
21
</head>
22
<body>
23
24
<div data-role="page">

 运行结果 
 北美留学生论坛