CAPTION: javascript常用代碼大全 * 12/31 * 2008 [23]JavaScript | [24]網頁設計 3273 次查看 * 上一條:[25]javascript規定最多輸入的字符串長度 * 下一條:[26]調用IE內置打印組件完成web打印方案及例程    //打開模式對話框   function doSelectUser(txtId)   {    strFeatures="dialogWidth=500px;dialogHeight=360px;center=yes;    middle=yes ;help=no;status=no;scroll=no";    var url,strReturn;   url="selUser.aspx";   strReturn=window.showModalDialog(url,'',strFeatures);    }    //返回模式對話框的值   function okbtn_onclick()   {   var commstr='';   window.returnValue=commstr;    window.close() ;   }   全屏幕打開 IE 窗口   var winWidth=screen.availWidth ;   var winHeight=screen.availHeight-20;   window.open("main.aspx","surveyWindow","toolbar=no,width="+ winWidth +",height="+ winHeight +",top=0,left=0,scrollbars=yes,resizable=yes,center:yes,statusbars=yes ");   break   //腳本中中使用xml   function initialize() {    var xmlDoc    var xslDoc    xmlDoc = new ActiveXObject('Microsoft.XMLDOM')    xmlDoc.async = false;    xslDoc = new ActiveXObject('Microsoft.XMLDOM')    xslDoc.async = false;    xmlDoc.load("tree.xml")    xslDoc.load("tree.xsl")   folderTree.innerHTML = xmlDoc.documentElement.transformNode(xslDoc)   }    一、驗証類   1、數字驗証內    1.1 整數    1.2 大于0的整數 (用于傳來的ID的驗証)    1.3 負整數的驗証    1.4 整數不能大于iMax    1.5 整數不能小于iMin   2、時間類    2.1 短時間,形如 (13:04:06)    2.2 短日期,形如 (2003-12-05)    2.3 長時間,形如 (2003-12-05 13:04:06)    2.4 只有年和月。形如(2003-05,或者2003-5)    2.5 只有小時和分鐘,形如(12:03)   3、表單類    3.1 所有的表單的值都不能為空    3.2 多行文本框的值不能為空。    3.3 多行文本框的值不能超過sMaxStrleng    3.4 多行文本框的值不能少于sMixStrleng    3.5 判斷單選框是否選擇。    3.6 判斷復選框是否選擇.    3.7 復選框的全選,多選,全不選,反選    3.8 文件上傳過程中判斷文件類型   4、字符類    4.1 判斷字符全部由a-Z或者是A-Z的字字母組成    4.2 判斷字符由字母和數字組成。    4.3 判斷字符由字母和數字,下劃線,點號組成.且開頭的只能是下劃線和 字母    4.4 字符串替換函數.Replace();   5、瀏覽器類    5.1 判斷瀏覽器的類型    5.2 判斷ie的版本    5.3 判斷客戶端的分辨率   6、結合類    6.1 email的判斷。    6.2 手機號碼的驗証    6.3 身份証的驗証    二、功能類    1、時間與相關控件類    1.1 日歷    1.2 時間控件    1.3 萬年歷    1.4 顯示動態顯示時鐘效果(文本,如OA中時間)    1.5 顯示動態顯示時鐘效果 (圖像,像手表)   2、表單類    2.1 自動生成表單    2.2 動態添加,修改,刪除下拉框中的元素    2.3 可以輸入內容的下拉框    2.4 多行文本框中只能輸入iMax文字。如果多輸入了,自動減少到iMax個 文字(多用于短信發送)   3、打印類    3.1 打印控件   4、事件類    4.1 屏蔽右鍵    4.2 屏蔽所有功能鍵    4.3 --> 和<-- F5 F11,F9,F1    4.4 屏蔽組合鍵ctrl+N   5、網頁設計類    5.1 連續滾動的文字,圖片(注意是連續的,兩段文字和圖片中沒有空白 出現)    5.2 html編輯控件類    5.3 顏色選取框控件    5.4 下拉菜單    5.5 兩層或多層次的下拉菜單    5.6 仿IE菜單的按鈕。(效果如rongshuxa.com的導航欄目)    5.7 狀態欄,title欄的動態效果(例子很多,可以研究一下)    5.8 雙擊後,網頁自動滾屏   6、樹型結構。    6.1 asp+SQL版    6.2 asp+xml+sql版    6.3 java+sql或者java+sql+xml   7、無邊框效果的制作   8、連動下拉框技術   9、文本排序   10,畫圖類,含餅、柱、矢量貝滋曲線   11,操縱客戶端注冊表類   12,DIV層相關(拖拽、顯示、隱藏、移動、增加)   13,TABLAE相關(客戶端動態增加行列,模擬進度條,滾動列表等)   14,各種相關類,如播放器,flash與腳本互動等   16, 刷新/模擬無刷新 異步調用類(XMLHttp或iframe,frame)            一、驗証類   1、數字驗証內    1.1 整數    /^(-|\+)?\d+$/.test(str)    1.2 大于0的整數 (用于傳來的ID的驗証)    /^\d+$/.test(str)    1.3 負整數的驗証    /^-\d+$/.test(str)   2、時間類    2.1 短時間,形如 (13:04:06)    function isTime(str)    {    var a = str.match(/^(\d{1,2})(:)?(\d{1,2})\2(\d{1,2})$/);    if (a == null) {alert('輸入的參數不是時間格式'); return false;}    if (a[1]>24 || a[3]>60 || a[4]>60)    {    alert("時間格式不對");    return false    }    return true;    }    2.2 短日期,形如 (2003-12-05)    function strDateTime(str)    {    var r = str.match(/^(\d{1,4})(-|\/)(\d{1,2})\2(\d{1,2})$/);    if(r==null)return false;    var d= new Date(r[1], r[3]-1, r[4]);    return (d.getFullYear()==r[1]&&(d.getMonth()+1)==r[3]&&d.getDate()==r[4]);    }    2.3 長時間,形如 (2003-12-05 13:04:06)    function strDateTime(str)    {    var reg = /^(\d{1,4})(-|\/)(\d{1,2})\2(\d{1,2}) (\d{1,2}):(\d{1,2}):(\d{1,2})$/;    var r = str.match(reg);    if(r==null)return false;    var d= new Date(r[1], r[3]-1,r[4],r[5],r[6],r[7]);    return (d.getFullYear()==r[1]&&(d.getMonth()+1)==r[3]&&d.getDate()==r[4]&&d.g etHours()==r[5]&&d.getMinutes()==r[6]&&d.getSeconds()==r[7]);    }    2.4 只有年和月。形如(2003-05,或者2003-5)    2.5 只有小時和分鐘,形如(12:03)   3、表單類    3.1 所有的表單的值都不能為空       3.2 多行文本框的值不能為空。    3.3 多行文本框的值不能超過sMaxStrleng    3.4 多行文本框的值不能少于sMixStrleng    3.5 判斷單選框是否選擇。    3.6 判斷復選框是否選擇.    3.7 復選框的全選,多選,全不選,反選    3.8 文件上傳過程中判斷文件類型   4、字符類    4.1 判斷字符全部由a-Z或者是A-Z的字字母組成       4.2 判斷字符由字母和數字組成。       4.3 判斷字符由字母和數字,下劃線,點號組成.且開頭的只能是下劃線和 字母    /^([a-zA-z_]{1})([\w]*)$/g.test(str)    4.4 字符串替換函數.Replace();   5、瀏覽器類    5.1 判斷瀏覽器的類型    window.navigator.appName    5.2 判斷ie的版本    window.navigator.appVersion    5.3 判斷客戶端的分辨率    window.screen.height; window.screen.width;   6、結合類    6.1 email的判斷。    function ismail(mail)    {    return(new RegExp(/^\w+((-\w+)|(\.\w+))*\@[A-Za-z0-9]+((\.|-)[A-Za-z0-9]+)*\.[A-Z a-z0-9]+$/).test(mail));    }    6.2 手機號碼的驗証    6.3 身份証的驗証    function isIdCardNo(num)    {    if (isNaN(num)) {alert("輸入的不是數字!"); return false;}    var len = num.length, re;    if (len == 15)    re = new RegExp(/^(\d{6})()?(\d{2})(\d{2})(\d{2})(\d{3})$/);    else if (len == 18)    re = new RegExp(/^(\d{6})()?(\d{4})(\d{2})(\d{2})(\d{3})(\d)$/);    else {alert("輸入的數字位數不對!"); return false;}    var a = num.match(re);    if (a != null)    {    if (len==15)    {    var D = new Date("19"+a[3]+"/"+a[4]+"/"+a[5]);    var B = D.getYear()==a[3]&&(D.getMonth()+1)==a[4]&&D.getDate()==a[5];    }    else    {    var D = new Date(a[3]+"/"+a[4]+"/"+a[5]);    var B = D.getFullYear()==a[3]&&(D.getMonth()+1)==a[4]&&D.getDate()==a[5];    }    if (!B) {alert("輸入的身份証號 "+ a[0] +" 裡出生日期不對!"); return false;}    }    return true;    }    畫圖:            寫注冊表:             TABLAE相關(客戶端動態增加行列)                           
    
    
    
               1.身份証嚴格驗証:       2.驗証IP地址          3.加sp1後還能用的無邊框窗口!!            Chromeless Window            貼兩個關于treeview的         treeview中如何在服務器端得到客戶端設置後的節點選中狀態            三??用的小技巧:晷檁?入法.禁止儻上.禁止妖氧   晷檁?入法    本文字框?入法被晷檁:   遮法: style="ime-mode:disabled"   ?例:    禁止儻上    本文字框禁止儻上文字:   遮法:onpaste="return false"   ?例:    禁止妖氧    本文字框禁止妖氧:   遮法:oncopy="return false;" oncut="return false;"   ?例:      //================================   //Cookie操作   //================================   function getCookieVal (offset)   {   var endstr = document.cookie.indexOf (";", offset);   if (endstr == -1)   endstr = document.cookie.length;   return unescape(document.cookie.substring(offset, endstr));   }    function GetCookie (name)   {   var arg = name + "=";   var alen = arg.length;   var clen = document.cookie.length;   var i = 0;   while (i < clen)   {   var j = i + alen;   if (document.cookie.substring(i, j) == arg)   return getCookieVal (j);   i = document.cookie.indexOf(" ", i) + 1;   if (i == 0)   break;   }   return null;   }      function deleteCookie(cname) {    var expdate = new Date();    expdate.setTime(expdate.getTime() - (24 * 60 * 60 * 1000 * 369));    // document.cookie =" ckValue="ok"; expires="+ expdate.toGMTString();    setCookie(cname,"",expdate);    }    function setCookie (name, value, expires) {    document.cookie = name + "=" + escape(value) +    "; expires=" + expires.toGMTString() ;   }         一個可以在頁面上隨意畫線、多邊形、圓,填充等功能的js (part 1)    var jg_ihtm, jg_ie, jg_fast, jg_dom, jg_moz,   jg_n4 = (document.layers && typeof document.classes != "undefined");      function chkDHTM(x, i)   {   x = document.body || null;   jg_ie = x && typeof x.insertAdjacentHTML != "undefined";   jg_dom = (x && !jg_ie &&   typeof x.appendChild != "undefined" &&   typeof document.createRange != "undefined" &&   typeof (i = document.createRange()).setStartBefore != "undefined" &&   typeof i.createContextualFragment != "undefined");   jg_ihtm = !jg_ie && !jg_dom && x && typeof x.innerHTML != "undefined";   jg_fast = jg_ie && document.all && !window.opera;   jg_moz = jg_dom && typeof x.style.MozOpacity != "undefined";   }      function pntDoc()   {   this.wnd.document.write(jg_fast? this.htmRpc() : this.htm);   this.htm = '';   }      function pntCnvDom()   {   var x = document.createRange();   x.setStartBefore(this.cnv);   x = x.createContextualFragment(jg_fast? this.htmRpc() : this.htm);   this.cnv.appendChild(x);   this.htm = '';   }      function pntCnvIe()   {   this.cnv.insertAdjacentHTML("BeforeEnd", jg_fast? this.htmRpc() : this.htm);   this.htm = '';   }      function pntCnvIhtm()   {   this.cnv.innerHTML += this.htm;   this.htm = '';   }      function pntCnv()   {   this.htm = '';   }      function mkDiv(x, y, w, h)   {   this.htm += '
<\/div>';   }      function mkDivIe(x, y, w, h)   {   this.htm += '%%'+this.color+';'+x+';'+y+';'+w+';'+h+';';   }      function mkDivPrt(x, y, w, h)   {   this.htm += '
<\/div>';   }      function mkLyr(x, y, w, h)   {   this.htm += '<\/layer>\n';   }      var regex = /%%([^;]+);([^;]+);([^;]+);([^;]+);([^;]+);/g;   function htmRpc()   {   return this.htm.replace(   regex,   '
\n');   }      function htmPrtRpc()   {   return this.htm.replace(   regex,   '
\n');   }      function mkLin(x1, y1, x2, y2)   {   if (x1 > x2)   {   var _x2 = x2;   var _y2 = y2;   x2 = x1;   y2 = y1;   x1 = _x2;   y1 = _y2;   }   var dx = x2-x1, dy = Math.abs(y2-y1),   x = x1, y = y1,   yIncr = (y1 > y2)? -1 : 1;    if (dx >= dy)   {   var pr = dy<<1,   pru = pr - (dx<<1),   p = pr-dx,   ox = x;   while ((dx--) > 0)   {   ++x;   if (p > 0)   {   this.mkDiv(ox, y, x-ox, 1);   y += yIncr;   p += pru;   ox = x;   }   else p += pr;   }   this.mkDiv(ox, y, x2-ox+1, 1);   }    else   {   var pr = dx<<1,   pru = pr - (dy<<1),   p = pr-dy,   oy = y;   if (y2 <= y1)   {   while ((dy--) > 0)   {   if (p > 0)   {   this.mkDiv(x++, y, 1, oy-y+1);   y += yIncr;   p += pru;   oy = y;   }   else   {   y += yIncr;   p += pr;   }   }   this.mkDiv(x2, y2, 1, oy-y2+1);   }   else   {   while ((dy--) > 0)   {   y += yIncr;   if (p > 0)   {   this.mkDiv(x++, oy, 1, y-oy);   p += pru;   oy = y;   }   else p += pr;   }   this.mkDiv(x2, oy, 1, y2-oy+1);   }   }   } * [27]相關文檔 * [28]最受歡迎 * [29]最新文檔 * [30]簡單介紹CSS結合JS的運用 * [31]排序Select中Option項的一個示例 * [32]JavaScript引用對象的途徑 * [33]強制訪問你的廣告 * [34]JavaScript:完全容錯和瀏覽器自動最大化 * [35]制作類似于Title、ALT的提示效果 * [36]“HTMLMarkup”標記實現網頁畫中畫 * [37]一些有關檢查數據的JS代碼 * [38]用JavaScript實現更復雜的交互 * [39]制作仿Flash的圖片漸變效果 * [40]禁止右鍵、Ctrl鍵和復制功能的JS代碼 * [41]JavaScript面向對象技術實現樹形控件 * [42]JavaScript技術講座-使用內部對象系統 * [43]javascript的幾種排序方法 * [44]什麼是JavaScript及其特點 * [45]下拉菜單做翻頁的通用代碼 * [46]用JavaScript腳本實現Web頁面信息交互 * [47]Javascript中暫停功能的實現 * [48]使你的主頁千變萬化 * [49]用javascript操作word文檔 * [50]輕鬆實現刪除確認 * [51]用JavaScript限制圖片上傳長寬 * [52]JavaScript實際應用:子窗口和父窗口交互 * [53]JAVASCRIPT加密解密終級指南 * [54]JavaScript程序控制流 * [55]Javascript:window對象的方法 * [56]jscript錯誤代碼及相應解釋大全 * [57]JavaScript對象與數組參考大全3 * [58]檢測字符的Javascript代碼 * [59]網頁播放器代碼集中營 * [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/56241.html 26. http://doc.linuxpk.com/56243.html 27. http://doc.linuxpk.com/56242.html#assocs 28. http://doc.linuxpk.com/56242.html#favorites 29. http://doc.linuxpk.com/56242.html#newests 30. http://doc.linuxpk.com/56280.html 31. http://doc.linuxpk.com/56455.html 32. http://doc.linuxpk.com/77188.html 33. http://doc.linuxpk.com/56414.html 34. http://doc.linuxpk.com/56419.html 35. http://doc.linuxpk.com/56438.html 36. http://doc.linuxpk.com/56295.html 37. http://doc.linuxpk.com/56345.html 38. http://doc.linuxpk.com/77198.html 39. http://doc.linuxpk.com/56431.html 40. http://doc.linuxpk.com/56336.html 41. http://doc.linuxpk.com/56301.html 42. http://doc.linuxpk.com/56181.html 43. http://doc.linuxpk.com/56319.html 44. http://doc.linuxpk.com/77196.html 45. http://doc.linuxpk.com/56173.html 46. http://doc.linuxpk.com/77200.html 47. http://doc.linuxpk.com/56346.html 48. http://doc.linuxpk.com/56427.html 49. http://doc.linuxpk.com/56237.html 50. http://doc.linuxpk.com/56376.html 51. http://doc.linuxpk.com/56283.html 52. http://doc.linuxpk.com/56190.html 53. http://doc.linuxpk.com/56354.html 54. http://doc.linuxpk.com/77192.html 55. http://doc.linuxpk.com/56232.html 56. http://doc.linuxpk.com/56317.html 57. http://doc.linuxpk.com/56380.html 58. http://doc.linuxpk.com/56194.html 59. http://doc.linuxpk.com/56314.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/