WIFI建立过程概述:
STA ------------> Probe Request ----------------> AP //广播自身数据
STA <------------ Probe Response <------------- AP
STA ------------> Authentication Request --------> AP //认证Auth类型,Open System , Shared Key等
STA ------------> Authentication Response------> AP
STA-------------> Association Request ------------> AP //请求与AP建立关联,从而可以进行数据交互
STA-------------> Association Response-----------> AP
WEP/WPA/WPA2/DISABLED Security Type.
Data Communication
http://standards.ieee.org/about/get/802/802.11.html
最近在公司做一个移动客户端,混合应用模式开发,使用的Jquerymobile,自己对jquerymobile不是很熟悉,利用空闲的时间从头开始学习jquerymobile。希望通过自己的努力,和记录能够使自己对于jquerymobile有一定的了解。
花了几分钟写了一个jquerymobile的最简单的页面,学习每个技术都是先写hello XX,所以我这次第一次写的是hello jquerymobile。代码如下:
<!doctype html> <html> <head> <meta charset="utf-8"> <title>第一个jquerymobile页面</title> <meta name="viewport" content="width=device-width,initial-scale=1" /> <link rel="stylesheet" href="/blog_article/jqm/jquery.mobile-1.2.0.min.css"/> <script src="/blog_article/jqm/jquery-1.8.2.min.js"></script> <script src="/blog_article/jqm/jquery.mobile-1.2.0.min.js"></script> </head> <body> <div id="first" data-role="page"> <div id="header" data-role="header"> <h1>这是第一个jquerymobile页面</h1> </div> <div id="content" data-role="content"> Hello Jquerymobile!! </div> <div id="footer" data-role="footer"> <h4>Footer</h4> </div> </div> </body> </html>
这是一个很简单的页面,但是有几点需要说明。
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.css" /> <script src="http://code.jquery.com/jquery-1.8.2.min.js"></script> <script src="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.js"></script>
<meta name="viewport" content="width=device-width,initial-scale=1" />这行代码的功能是:设置移动设备中浏览器缩放的宽度与等级。通常情况下,移动设备的浏览器默认以“900px”的宽度显示页面,这种宽度会导致屏幕缩小,页面放大,不适合浏览。如果在页面中添加 元素,并设置“content”的属性值为“width=device-width,initial-scale=1”,可以使页面的宽度与移动设备的屏幕宽度相同,更加适合用户浏览。
CGPoint position = CGPointMake(0, 142);
[hotScrollerView setContentOffset:position animated:YES];