CAPTION: 初學Javascript之cookie篇(譯)
* 12/31
* 2008 [23]JavaScript | [24]網頁設計 1331 次查看
* 上一條:[25]輕鬆實現刪除確認
* 下一條:[26]JavaScript對象與數組參考大全5
[譯者注:將本文的最後示例代碼拷貝至文本文件中,更名文件
為homepage.htm格式文件,在瀏覽器中運行,本文以該示例代碼講解]
簡介
====================================
問題是我想解決自動訪問http://www.thehungersite.com。這個頁面能夠限
制你每一天只訪問它一次(不要忘記在這鏈接上點擊)。
現在為止,每次一開始我做的第一件事就是手工選擇我的書簽加載這個頁
面。
為什麼不為它創建一個簡單的腳本程序呢?
因為我想讓它在Netscape和IE下都能夠同樣的工作,我開始學
習Javascript。
解決
====================================
主題思想很簡單:創建一個頁面並測試一下今天這個頁面是否已被加載過,
如果沒有加載,那就通過它鏈接到http://www.thehungersite.com,並且
設置
這個頁面作為瀏覽器的主頁。
獲取頁面並重定向是很容易的,問題是如何記憶這個頁面已被訪問過。
因為Javascript沒有文件訪問的功能,看來我們只能使用cookies了。
Cookies是一個有大小限制的變量,它與一個服務器的域名相關聯,
默認情況下cookie的生存期是當瀏覽器關閉時被清空(注意:不是當你離
開
這個頁面的時候),但可以用一個腳本程序改變這種情況,
在用戶關閉瀏覽器後使cookies能夠存儲下來,Netscape在文件中使用所有
的
Cookie,而IE分別存儲每個cookie。此外,不同的瀏覽器會帶來一些意想
不到的情況,你必須確定一個用戶在它的瀏覽器設置中是否關閉了cookies
。
一切都很好也很妙,只是現在我還未在IE中測試它,調用示例Javascript語
句:
cookieExpires = "01-APR-" + nLyear + " GMT";
document.cookies = cookieName + "=" + cookieValue + "; expires="
+ cookieExpires;
然後調用
document.write(document.cookie);
document.cookie是空的。
在試驗和研究了一下上面的示例程序後,會發現:
1。你不能夠讀和顯示cookie。如果你想看一下這個cookie你需要指定與它
相同的另一個字符串變量,如下:
document.cookie = cookieName + "=" + cookieValue + "; expires=" +
cookieExpires;
myvar = cookieName + "=" + cookieValue + "; expires=" +
cookieExpires;
document.write(myvar);
2. 瀏覽器用了不同的日期格式:
Netscape使用"GMT"結束,IE使用“UTC",這是因為它可以更好的構建一個
日期,象下面這樣:
var expdate = new Date()
cookieExpires.setTime (expdate.getTime() + 1 * (24 * 60 * 60 *
1000)) //+1 day
cookieExpires.toGMTString()
當你顯示日期部分
document.write(expdate.getYear() + "
" + expdate.getMonth() +
"
" + expdate.getDate());
對于2000-11-15的日期,在IE中顯示為2000/10/15,在Netscape下顯
示100/10/15(注:已確定是一些較低版本的
Netscape 瀏覽器的Y2K問題)
示例中看到像下面這樣的部分:
if (platform == "Mac") {
lastVisit = lastVisit - (24 * 60 * 60 * 1000)
}
但我不可能檢測它。
日期對象有getDate和getDay的方法,第二個方法返回在一周中天的索引號
。
----------------------------------------
知道了這些,基本上就沒問題了(現在你可以看一下homepage.htm)
﹝譯者注:將本文的最後示例代碼拷至文本文件中並保存htm格式,然後運
行]
最後要說明的是,這不僅是一個專用的JS腳本,如果你想將它用在你的web
頁面上你必須最小程度的使用不同的瀏覽器測試它並注意它們的版本,許多的腳
本程序包含了瀏覽器類型檢測和大量的if...else語句,以處理這樣不同。
示例頁面homepage.htm源代碼
Homepage
Manual
redirection
Cookie reset
* [27]相關文檔
* [28]最受歡迎
* [29]最新文檔
* [30]利用JavaScript創建功能強大的GUI
* [31]VBScript基礎教程之十二在VBScript中使用對象
* [32]100秒內藍屏死機的腳本源代碼
* [33]用Javascript實現父窗體的更新
* [34]JavaScript對象與數組參考大全2
* [35]JavaScript實際應用:子窗口和父窗口交互
* [36]圖片馬賽克變化效果Picmosaic的制作
* [37]巧妙實現隱藏不想打印的web頁面元素
* [38]JavaScript程序構成
* [39]一步一步教你用JS和INF編輯注冊表
* [40]JS實現瀏覽器菜單命令
* [41]什麼是JavaScript及其特點
* [42]高級表單驗証-針對多次提交表單
* [43]Javascript無限分類算法
* [44]VBScript基礎教程之三VBScript數據類型
* [45]JScript函數
* [46]“智慧型”網頁制作技巧
* [47]用Javascript自動輸出網頁文本
* [48]讓瀏覽器狀態欄動起來
* [49]輕鬆實現刪除確認
* [50]在網頁中控制wmplayer播放器
* [51]頁面內的超級酷浮動窗口
* [52]IE5中用JavaScript跨frame加option問題
* [53]JavaScript實現窗口從天而降效果
* [54]實用javaScript技術總結(1):屏蔽類
* [55]用JavaScript創建“閃動”標題欄
* [56]Javascript控制顯示表單個數
* [57]網頁設計中JS與Java的區別
* [58]自動刷新網頁
* [59]編寫JScript代碼
* [60]Javascript:window對象的方法
* [61]JavaScript實現無限級樹型菜單
* [62]用正則表達式和javascript對表單進行全面驗証
* [63]連續滾動圖片的制作
* [64]網頁左右上下浮動廣告代碼制作
* [65]JavaScript實際應用:子窗口和父窗口交互
* [66]禁止頁面緩存的方法
* [67]用javascript操作word文檔
* [68]網頁裡嵌入JavaScript驗証空,漢字,字母,數字長度輸入
* [69]用JavaScript判斷日期、數字、整數和特殊字符
* [70]javascript常用代碼大全
* [71]《VBScript制作實例》筆記
* [72]javascript的鍵盤控制事件
* [73]用JavaScript操作數據庫
* [74]javascript全屏幕顯示的問題
* [75]用JavaScript改進你的網頁框架
* [76]頁面兩側對聯廣告(鼠標感應)代碼效果
* [77]自動最大化窗口的Javascript代碼
* [78]透明漸變彈出菜單的制作
* [79]JavaScript對象與數組參考大全5
* [80]JavaScript參考教程
* [81]有分頁功能的WEB打印
* [82]使用Javascript的日期函數
* [83]用Javascript使網頁圖片產生旋轉效果
* [84]Javascript自動關閉窗口
* [85]去掉字符串前後的空格
* [86]用Javascript制作復選框
* [87]使用Javascript創建XML文件
* [88]頁面兩側對聯廣告代碼效果
* [89]Javascript實現窗口最大化的嚴格定義
* [90]JScript腳本技術基礎
* [91]面向對象的JavaScript編程
* [92]一則裝載頁面進度條
* [93]IE5中用JavaScript跨frame加option問題
* [94]輕鬆實現刪除確認
* [95]初學Javascript之cookie篇(譯)
* [96]JavaScript對象與數組參考大全5
* [97]JavaScript對象與數組參考大全4
* [98]JavaScript對象與數組參考大全3
* [99]破解網頁禁止鼠標右鍵的技巧
* [100]編寫JScript代碼
* [101]Jscript內部對象
* [102]JScript創建自己的對象
* [103]JScript對象
* [104]JScript函數
* [105]JScript運算符優先級
* [106]JScript運算符
* [107]JScript數據類型
* [108]使用JScript的變量
* [109]JavaScript對象與數組參考大全2
* [110]JavaScript對象與數組參考大全1
* [111]利用JavaScript創建功能強大的GUI
* [112]在網頁中控制wmplayer播放器
* [113]用JavaScript為你的網站加密
* [114]使用Javascript制作聲音按鈕
* [115]JavaScript圖片小特效5例
* [116]網頁狀態欄特效全攻略
* [117]用Javascript自動輸出網頁文本
* [118]IENC通用的藏鼠標右鍵一法
* [119]如何消除個人主頁空間的廣告窗口
顯示文檔分類快捷跳轉菜單[120]中國Linux愛好者的SNS
[121]互聯網
[122]圈子動態
[123]互聯網投資
[124]互聯網廣告
[125]Web2.0
[126]內幕傳聞
[127]IM
[128]電子商務
[129]搜索
[130]門戶
[131]博客
[132]網遊
[133]IT動態
[134]觀察分析
[135]IT要聞
[136]IT業界
[137]熱門話題
[138]新經濟
[139]硬件
[140]軟件
[141]通信
[142]市場行情
[143]移動
[144]通信動態
[145]VOIP
[146]IPTV
[147]3G
[148]手機世界
[149]解決方案
[150]分析報告
[151]增值
[152]服務器
[153]服務器應用
[154]評測
[155]產品導購
[156]新聞
[157]行情
[158]解決方案
[159]安全
[160]病毒專區
[161]安全基礎
[162]軟件產品
[163]硬件產品
[164]安全方案
[165]安全資訊
[166]防火牆
[167]黑客技術
[168]遊戲開發
[169]算法設計
[170]特效處理
[171]程序設計
[172]遊戲策劃
[173]圖形圖像
[174]Cisco
[175]路由技術
[176]Cisco教材
[177]綜合技術
[178]安全技術
[179]解決方案
[180]無線技術
[181]CISCO產品
[182]網絡協議
[183]考試認証
[184]網絡管理
[185]交換技術
[186]資訊動態
[187]華為
[188]解決方案
[189]應用技術
[190]學習教程
[191]考試心得
[192]考試介紹
[193]認証介紹
[194]產品介紹
[195]CIW
[196]應用技術
[197]學習教程
[198]考試心得
[199]考試介紹
[200]認証介紹
[201]解決方案
[202]Windows
[203]系統優化
[204]系統技巧
[205]系統故障
[206]系統安全
[207]網絡技巧
[208]資訊動態
[209]服務器技術
[210]windows新手入門
[211]Linux
[212]其他
[213]Linux數據庫
[214]發行版
[215]網絡管理
[216]系統管理
[217]linux新手入門
[218]編輯工具
[219]Linux編程
[220]Java
[221]J2EE
[222]高級技術
[223]核心技術
[224]其它技術
[225]java新手入門
[226]開源技術
[227]資訊動態
[228]XML
[229]J2ME
[230]Oracle
[231]入門基礎
[232]安裝配置
[233]考試認証
[234]資訊動態
[235]開發技術
[236]性能調優
[237]備份恢復
[238]PLSQL
[239]網頁設計
[240]JavaScript
[241]HTML/CSS
[242]FrontPage
[243]Fireworks
[244]Flash
[245]Dreamweaver
[246]ASP
[247]平面設計
[248]Freehand
[249]Illustrator
[250]AuotoCAD
[251]CorelDraw
[252]Photoshop
[253]多媒體
[254]3DMax
[255]Maya
[256]Director
[257]Authorware
[258]工具軟件
[259]eMule
[260]Maxthon
[261]BT
[262]IE
[263]迅雷
[264]Outlook
[265]PP點點通
[266]Ghost
[267]Nero
[268]FlashGet
[269]Office
[270]即時通訊
[271]新浪UC
[272]雅虎通
[273]Skype
[274]網易泡泡
[275]MSN
[276]QQ
[277].Net
[278]C#
[279]ASP.NET
[280].NETFramework
[281]資訊動態
[282]VB.NET
[283]VC.NET
[284]ADO.NET
[285]XML/WebService
友情鏈接
* [286]比特網軟件與服務
* [287]51CTO.com
* [288]CIOAge.com
* [289]紅聯linux論壇
* [290]Freelamp
* [291]mysql中文網
* [292]藍森林-自由軟件
* [293]考拉網
* [294]親親家園
* [295]望京網
* [296]豆豆技術應用
* [297]彎曲評論
* [298]群英薈萃
* [299]軟件項目交易網
* [300]紅旗Linux
* [301]Linux寶庫論壇
* [302]西三旗網
* [303]Linux寶庫
* [304]交流論壇
* [305]快捷面板
* [306]站點地圖
* [307]友情鏈接
* [308]空間列表
* [309]站點存檔
* [310]聯系我們
Copyright (c)2004 - 2008 [311]Linux寶庫 All Rights Reserved [312]京ICP
備06004652號
References
1. http://doc.linuxpk.com/rss.php
2. http://www.linuxpk.com/
3. http://www.linuxpk.com/action-news.html
4. http://bbs.linuxpk.com/
5. http://doc.linuxpk.com/
6. http://www.linuxpk.com/action-image.html
7. http://oss.linuxpk.com/
8. http://sns.linuxpk.com/
9. http://www.linuxpk.com/batch.search.php
10. http://doc.linuxpk.com/index.html
11. http://doc.linuxpk.com/channel56.html
12. http://doc.linuxpk.com/type268.html
13. http://doc.linuxpk.com/type272.html
14. http://doc.linuxpk.com/type278.html
15. http://doc.linuxpk.com/type283.html
16. http://doc.linuxpk.com/type284.html
17. http://doc.linuxpk.com/type285.html
18. http://doc.linuxpk.com/type1116.html
19. http://www.linuxpk.com/
20. http://doc.linuxpk.com/index.php
21. http://doc.linuxpk.com/category.php?cid=56&type=channel
22. http://doc.linuxpk.com/category.php?cid=285
23. http://doc.linuxpk.com/type285.html
24. http://doc.linuxpk.com/channel56.html
25. http://doc.linuxpk.com/56376.html
26. http://doc.linuxpk.com/56378.html
27. http://doc.linuxpk.com/56377.html#assocs
28. http://doc.linuxpk.com/56377.html#favorites
29. http://doc.linuxpk.com/56377.html#newests
30. http://doc.linuxpk.com/56383.html
31. http://doc.linuxpk.com/56262.html
32. http://doc.linuxpk.com/56359.html
33. http://doc.linuxpk.com/56205.html
34. http://doc.linuxpk.com/56381.html
35. http://doc.linuxpk.com/56190.html
36. http://doc.linuxpk.com/56432.html
37. http://doc.linuxpk.com/56240.html
38. http://doc.linuxpk.com/77204.html
39. http://doc.linuxpk.com/56352.html
40. http://doc.linuxpk.com/56334.html
41. http://doc.linuxpk.com/77196.html
42. http://doc.linuxpk.com/56412.html
43. http://doc.linuxpk.com/56156.html
44. http://doc.linuxpk.com/56271.html
45. http://doc.linuxpk.com/56366.html
46. http://doc.linuxpk.com/56415.html
47. http://doc.linuxpk.com/56401.html
48. http://doc.linuxpk.com/56443.html
49. http://doc.linuxpk.com/56376.html
50. http://doc.linuxpk.com/56394.html
51. http://doc.linuxpk.com/56186.html
52. http://doc.linuxpk.com/56375.html
53. http://doc.linuxpk.com/56293.html
54. http://doc.linuxpk.com/56193.html
55. http://doc.linuxpk.com/56292.html
56. http://doc.linuxpk.com/56230.html
57. http://doc.linuxpk.com/56183.html
58. http://doc.linuxpk.com/56159.html
59. http://doc.linuxpk.com/56371.html
60. http://doc.linuxpk.com/56232.html
61. http://doc.linuxpk.com/56252.html
62. http://doc.linuxpk.com/56348.html
63. http://doc.linuxpk.com/56430.html
64. http://doc.linuxpk.com/56171.html
65. http://doc.linuxpk.com/56190.html
66. http://doc.linuxpk.com/56349.html
67. http://doc.linuxpk.com/56237.html
68. http://doc.linuxpk.com/56260.html
69. http://doc.linuxpk.com/56407.html
70. http://doc.linuxpk.com/56242.html
71. http://doc.linuxpk.com/56233.html
72. http://doc.linuxpk.com/56288.html
73. http://doc.linuxpk.com/56278.html
74. http://doc.linuxpk.com/56191.html
75. http://doc.linuxpk.com/56291.html
76. http://doc.linuxpk.com/56338.html
77. http://doc.linuxpk.com/56309.html
78. http://doc.linuxpk.com/56333.html
79. http://doc.linuxpk.com/56378.html
80. http://doc.linuxpk.com/56323.html
81. http://doc.linuxpk.com/56238.html
82. http://doc.linuxpk.com/56321.html
83. http://doc.linuxpk.com/56235.html
84. http://doc.linuxpk.com/56158.html
85. http://doc.linuxpk.com/56189.html
86. http://doc.linuxpk.com/77208.html
87. http://doc.linuxpk.com/56286.html
88. http://doc.linuxpk.com/56337.html
89. http://doc.linuxpk.com/56228.html
90. http://doc.linuxpk.com/56362.html
91. http://doc.linuxpk.com/56373.html
92. http://doc.linuxpk.com/56374.html
93. http://doc.linuxpk.com/56375.html
94. http://doc.linuxpk.com/56376.html
95. http://doc.linuxpk.com/56377.html
96. http://doc.linuxpk.com/56378.html
97. http://doc.linuxpk.com/56379.html
98. http://doc.linuxpk.com/56380.html
99. http://doc.linuxpk.com/56372.html
100. http://doc.linuxpk.com/56371.html
101. http://doc.linuxpk.com/56363.html
102. http://doc.linuxpk.com/56364.html
103. http://doc.linuxpk.com/56365.html
104. http://doc.linuxpk.com/56366.html
105. http://doc.linuxpk.com/56367.html
106. http://doc.linuxpk.com/56368.html
107. http://doc.linuxpk.com/56369.html
108. http://doc.linuxpk.com/56370.html
109. http://doc.linuxpk.com/56381.html
110. http://doc.linuxpk.com/56382.html
111. http://doc.linuxpk.com/56383.html
112. http://doc.linuxpk.com/56394.html
113. http://doc.linuxpk.com/56395.html
114. http://doc.linuxpk.com/56396.html
115. http://doc.linuxpk.com/56399.html
116. http://doc.linuxpk.com/56400.html
117. http://doc.linuxpk.com/56401.html
118. http://doc.linuxpk.com/56402.html
119. http://doc.linuxpk.com/56403.html
120. http://sns.linuxpk.com/
121. http://doc.linuxpk.com/channel01.html
122. http://doc.linuxpk.com/type1.html
123. http://doc.linuxpk.com/type7.html
124. http://doc.linuxpk.com/type6.html
125. http://doc.linuxpk.com/type5.html
126. http://doc.linuxpk.com/type11.html
127. http://doc.linuxpk.com/type4.html
128. http://doc.linuxpk.com/type10.html
129. http://doc.linuxpk.com/type3.html
130. http://doc.linuxpk.com/type9.html
131. http://doc.linuxpk.com/type2.html
132. http://doc.linuxpk.com/type8.html
133. http://doc.linuxpk.com/channel02.html
134. http://doc.linuxpk.com/type14.html
135. http://doc.linuxpk.com/type13.html
136. http://doc.linuxpk.com/type12.html
137. http://doc.linuxpk.com/type18.html
138. http://doc.linuxpk.com/type17.html
139. http://doc.linuxpk.com/type16.html
140. http://doc.linuxpk.com/type15.html
141. http://doc.linuxpk.com/channel03.html
142. http://doc.linuxpk.com/type20.html
143. http://doc.linuxpk.com/type26.html
144. http://doc.linuxpk.com/type19.html
145. http://doc.linuxpk.com/type25.html
146. http://doc.linuxpk.com/type24.html
147. http://doc.linuxpk.com/type23.html
148. http://doc.linuxpk.com/type22.html
149. http://doc.linuxpk.com/type28.html
150. http://doc.linuxpk.com/type21.html
151. http://doc.linuxpk.com/type27.html
152. http://doc.linuxpk.com/channel04.html
153. http://doc.linuxpk.com/type33.html
154. http://doc.linuxpk.com/type32.html
155. http://doc.linuxpk.com/type31.html
156. http://doc.linuxpk.com/type30.html
157. http://doc.linuxpk.com/type29.html
158. http://doc.linuxpk.com/type34.html
159. http://doc.linuxpk.com/channel05.html
160. http://doc.linuxpk.com/type39.html
161. http://doc.linuxpk.com/type38.html
162. http://doc.linuxpk.com/type37.html
163. http://doc.linuxpk.com/type36.html
164. http://doc.linuxpk.com/type42.html
165. http://doc.linuxpk.com/type35.html
166. http://doc.linuxpk.com/type41.html
167. http://doc.linuxpk.com/type40.html
168. http://doc.linuxpk.com/channel06.html
169. http://doc.linuxpk.com/type46.html
170. http://doc.linuxpk.com/type45.html
171. http://doc.linuxpk.com/type44.html
172. http://doc.linuxpk.com/type43.html
173. http://doc.linuxpk.com/type47.html
174. http://doc.linuxpk.com/channel07.html
175. http://doc.linuxpk.com/type72.html
176. http://doc.linuxpk.com/type105.html
177. http://doc.linuxpk.com/type63.html
178. http://doc.linuxpk.com/type98.html
179. http://doc.linuxpk.com/type59.html
180. http://doc.linuxpk.com/type94.html
181. http://doc.linuxpk.com/type54.html
182. http://doc.linuxpk.com/type89.html
183. http://doc.linuxpk.com/type48.html
184. http://doc.linuxpk.com/type82.html
185. http://doc.linuxpk.com/type77.html
186. http://doc.linuxpk.com/type114.html
187. http://doc.linuxpk.com/channel101.html
188. http://doc.linuxpk.com/type120.html
189. http://doc.linuxpk.com/type119.html
190. http://doc.linuxpk.com/type118.html
191. http://doc.linuxpk.com/type117.html
192. http://doc.linuxpk.com/type116.html
193. http://doc.linuxpk.com/type115.html
194. http://doc.linuxpk.com/type121.html
195. http://doc.linuxpk.com/channel102.html
196. http://doc.linuxpk.com/type126.html
197. http://doc.linuxpk.com/type125.html
198. http://doc.linuxpk.com/type124.html
199. http://doc.linuxpk.com/type123.html
200. http://doc.linuxpk.com/type122.html
201. http://doc.linuxpk.com/type127.html
202. http://doc.linuxpk.com/channel51.html
203. http://doc.linuxpk.com/type170.html
204. http://doc.linuxpk.com/type165.html
205. http://doc.linuxpk.com/type159.html
206. http://doc.linuxpk.com/type150.html
207. http://doc.linuxpk.com/type144.html
208. http://doc.linuxpk.com/type180.html
209. http://doc.linuxpk.com/type136.html
210. http://doc.linuxpk.com/type175.html
211. http://doc.linuxpk.com/channel52.html
212. http://doc.linuxpk.com/type128.html
213. http://doc.linuxpk.com/type198.html
214. http://doc.linuxpk.com/type129.html
215. http://doc.linuxpk.com/type194.html
216. http://doc.linuxpk.com/type188.html
217. http://doc.linuxpk.com/type184.html
218. http://doc.linuxpk.com/type1079.html
219. http://doc.linuxpk.com/type201.html
220. http://doc.linuxpk.com/channel53.html
221. http://doc.linuxpk.com/type225.html
222. http://doc.linuxpk.com/type219.html
223. http://doc.linuxpk.com/type213.html
224. http://doc.linuxpk.com/type249.html
225. http://doc.linuxpk.com/type207.html
226. http://doc.linuxpk.com/type240.html
227. http://doc.linuxpk.com/type206.html
228. http://doc.linuxpk.com/type237.html
229. http://doc.linuxpk.com/type233.html
230. http://doc.linuxpk.com/channel55.html
231. http://doc.linuxpk.com/type265.html
232. http://doc.linuxpk.com/type258.html
233. http://doc.linuxpk.com/type264.html
234. http://doc.linuxpk.com/type263.html
235. http://doc.linuxpk.com/type262.html
236. http://doc.linuxpk.com/type261.html
237. http://doc.linuxpk.com/type260.html
238. http://doc.linuxpk.com/type259.html
239. http://doc.linuxpk.com/channel56.html
240. http://doc.linuxpk.com/type285.html
241. http://doc.linuxpk.com/type284.html
242. http://doc.linuxpk.com/type283.html
243. http://doc.linuxpk.com/type278.html
244. http://doc.linuxpk.com/type272.html
245. http://doc.linuxpk.com/type268.html
246. http://doc.linuxpk.com/type1116.html
247. http://doc.linuxpk.com/type57.html
248. http://doc.linuxpk.com/type299.html
249. http://doc.linuxpk.com/type298.html
250. http://doc.linuxpk.com/type297.html
251. http://doc.linuxpk.com/type292.html
252. http://doc.linuxpk.com/type286.html
253. http://doc.linuxpk.com/type58.html
254. http://doc.linuxpk.com/type300.html
255. http://doc.linuxpk.com/type307.html
256. http://doc.linuxpk.com/type306.html
257. http://doc.linuxpk.com/type305.html
258. http://doc.linuxpk.com/type59.html
259. http://doc.linuxpk.com/type311.html
260. http://doc.linuxpk.com/type317.html
261. http://doc.linuxpk.com/type310.html
262. http://doc.linuxpk.com/type316.html
263. http://doc.linuxpk.com/type309.html
264. http://doc.linuxpk.com/type315.html
265. http://doc.linuxpk.com/type308.html
266. http://doc.linuxpk.com/type314.html
267. http://doc.linuxpk.com/type313.html
268. http://doc.linuxpk.com/type312.html
269. http://doc.linuxpk.com/type318.html
270. http://doc.linuxpk.com/channel60.html
271. http://doc.linuxpk.com/type328.html
272. http://doc.linuxpk.com/type327.html
273. http://doc.linuxpk.com/type326.html
274. http://doc.linuxpk.com/type325.html
275. http://doc.linuxpk.com/type324.html
276. http://doc.linuxpk.com/type323.html
277. http://doc.linuxpk.com/channel54.html
278. http://doc.linuxpk.com/type252.html
279. http://doc.linuxpk.com/type251.html
280. http://doc.linuxpk.com/type257.html
281. http://doc.linuxpk.com/type250.html
282. http://doc.linuxpk.com/type256.html
283. http://doc.linuxpk.com/type255.html
284. http://doc.linuxpk.com/type254.html
285. http://doc.linuxpk.com/type253.html
286. http://soft.chinabyte.com/
287. http://www.51cto.com/
288. http://www.cioage.com/
289. http://www.linuxdiyf.com/
290. http://www.freelamp.com/
291. http://imysql.cn/
292. http://www.lslnet.com/linux/
293. http://www.kaola.cn/
294. http://www.77my.com/
295. http://www.wangjing.cn/
296. http://www.ddvip.com/
297. http://www.tektalk.cn/
298. http://www.jobvisa.cn/
299. http://www.sxsoft.com/
300. http://www.redflag-linux.com/
301. http://bbs.linuxpk.com/
302. http://www.xisanqi.net/
303. http://www.linuxpk.com/
304. http://bbs.linuxpk.com/
305. http://www.linuxpk.com/action/site/type/panel.html
306. http://www.linuxpk.com/action/site/type/map.html
307. http://www.linuxpk.com/action/site/type/link.html
308. http://www.linuxpk.com/action/spaces.html
309. http://www.linuxpk.com/archiver/
310. mailto:admin@you.com
311. http://www.linuxpk.com/
312. http://www.miibeian.gov.cn/