關于前端碎碎念5-web前端常見面試問題總結(1)

      網友投稿 837 2022-05-30

      1.web前端項目的結構是怎樣的?文件有哪些命名規范?

      項目結構規范

      頁面文件:以項目名命名,例如:shop

      js文件:命名為js

      css文件:命名為css

      圖片文件:命名為images

      數據文件:命名為data

      文件存儲規范:按項目模塊分類存儲,例如:用戶信息管理

      頁面文件存放:?shop/userinfo/userlist.html

      js文件:js/userinfo/userlist.js

      css樣式:css/userinfo/userlist.css

      注意:圖片的分類一般按照功能作用劃分,比如:?小圖標、動畫圖片

      動畫圖片:images/gif/…

      圖標庫:images/flags/…

      項目文件命名規范

      頁面/js/css文件規范:項目名稱-模塊名稱-頁面名稱,例如:shop-user-index.html用戶模塊的首頁。

      注意:js一般會包含?公共js?習慣命名commo.js;css樣式會包含公共css,習慣命名為?common.css。

      2.談談瀏覽器的兼容性

      這個問題是非常抽象的,越是抽象的問題越能表現出我們的表達能力,而面試官就喜歡根據你的回答來追問,不斷地打斷你的思路,這個時候不要慌,一定要堅信自己。

      回答思路

      我們在開發的時候會明確項目要兼容哪些瀏覽器的最低版本,我之前的項目要求兼容IE8.0以上的版本,Chrome 48以上,FireFox 44以上。有了這些最基本的要求,在開發中就是要考慮到CSS樣式和JavaScript的在這些瀏覽器的兼容性了

      html部分

      1.H5新標簽在IE9以下的瀏覽器識別

      2.ul標簽內外邊距問題ul標簽在IE6\IE7中,有個默認的外邊距,但是在IE8以上及其他瀏覽器中有個默認的內邊距。解決方法:統一設置ul的內外邊距為0

      CSS樣式的兼容性

      1.css的hack問題:主要針對IE的不同版本,不同的瀏覽器的寫法不同

      IE的條件注釋hack:

      2.IE6雙邊距問題:IE6在浮動后,又有橫向的margin,此時,該元素的外邊距是其值的2倍

      解決辦法:display:block;

      3.IE6下圖片的下方有空隙

      解決方法:給img設置display:block;

      4.IE6下兩個float之間會有個3px的bug

      解決辦法:給右邊的元素也設置float:left;

      5.IE6下沒有min-width的概念,其默認的width就是min-width

      6.IE6下在使用margin:0 auto;無法使其居中

      解決辦法:為其父容器設置text-align:center;

      7.被點擊過后的超鏈接不再具有hover和active屬性

      解決辦法:按lvha的順序書寫css樣式,

      ":link": a標簽還未被訪問的狀態;

      ":visited": a標簽已被訪問過的狀態;

      ":hover": 鼠標懸停在a標簽上的狀態;

      ":active": a標簽被鼠標按著時的狀態;

      8.在使用絕對定位或者相對定位后,IE中設置z-index失效,原因是因為其元素依賴于父元素的z-index,但是父元素默認為0, 子高父低,所以不會改變顯示的順序

      9.IE6下無法設置1px的行高,原因是由其默認行高引起的

      解決辦法:為期設置overflow:hidden;或者line-height:1px;

      JavaScript的兼容性

      1.標準的事件綁定方法函數為addEventListener,但IE下是attachEvent;

      2.事件的捕獲方式不一致,標準瀏覽器是由外至內,而IE是由內到外,但是最后的結果是將IE的標準定為標準

      3.window.event獲取的。并且獲取目標元素的方法也不同,標準瀏覽器是event.target,而IE下是event.srcElement

      4.在低版本的IE中獲取的日期處理函數的值不是與1900的差值,但是在高版本的IE中和標準瀏覽器保持了一致,獲取的值也是與1900的差值。

      比如:var?year= new Date().getYear();

      5.ajax的實現方式不同,這個我所理解的是獲取XMLHttpRequest的不同,IE下是activeXObject

      6.IE中不能操作tr的innerHtml7.獲得DOM節點的父節點、子節點的方式不同

      其他瀏覽器:parentNode??parentNode.childNodes

      IE:parentElement?parentElement.children

      3.頁面優化有哪些方法

      頁面優化的方法非常多,最好能夠對這些優化方案進行分類,這些方案最好能夠結合實際開發遇到的問題來表述。

      優化的方案

      減少操作量

      盡量減少 HTTP 請求

      1) 合并文件,比如把多個 CSS 文件合成一個;

      2) CSS Sprites 利用 CSS background 相關元素進行背景圖絕對定位;

      不要在 HTML 中使用縮放圖片

      縮放圖片并沒有減少圖片的容量,只是控制了圖片的大小。

      Image壓縮

      使用工具對圖片進行壓縮,保證質量的同時減少了圖片的大小。

      減少對DOM的操作

      減少對DOM的操作,減少頁面的重繪。

      提前做加載操作

      對域名進行預解析

      例如京東的做法

      預載入組件或延遲載入組件

      把 CSS 放到代碼頁上端

      CSS 放到最頂部,瀏覽器能夠有針對性的對 HTML 頁面從頂到下進行解析和渲染。

      使用 new Image對象,對圖片進行緩存

      提升并行加載

      切分組件到多個域 ,提升服務器的響應能力

      JavaScript和CSS優化

      從頁面中剝離 JavaScript 與 CSS

      剝離后,能夠有針對性的對其進行單獨的處理策略,比如壓縮或者緩存策略。

      精簡 JavaScript 與 CSS

      使用工具壓縮JavaScript和CSS文件

      腳本放到 HTML 代碼頁底部

      減少對頁面的阻塞。

      異步加載

      使用Ajax實現異步加載,例如,滾動頁面加載后面的內容,這種也比較常見。

      4.頁面渲染原理是什么?

      這是一道純理論的題目,只要能夠將瀏覽器的渲染過程很專業的表述出來,一定會得到面試官的青睞,作為一枚前端人員確實有必要了解一下瀏覽器的渲染過程是怎樣的,對于頁面性能的提升是有幫助的。

      解題思路

      渲染引擎是干什么的

      渲染引擎可以顯示html、xml文檔及圖片,它也可以借助插件(一種瀏覽器擴展)顯示其他類型數據,例如使用PDF閱讀器插件可以顯示PDF格式。

      渲染引擎

      不同的瀏覽器有不同的渲染引擎,對于渲染引擎的使用總結如下:

      Trident(MSHTML)內核:IE,MaxThon,TT,The World,360,搜狗瀏覽器等

      Gecko內核:Netscape6及以上版本,FF,MozillaSuite/SeaMonkey等

      Presto內核:Opera7及以上

      Webkit內核:Safari,Chrome等

      解析html以構建dom樹 -> 構建render樹 -> 布局render樹 -> 繪制render樹

      步驟詳細解釋

      第一步:渲染引擎開始解析html,根據標簽構建DOM節點

      第二步:根據css樣式構建渲染樹,包括元素的大小、顏色,隱藏的元素不會被構建到該樹中。

      第三步:根據css樣式構建布局樹,主要是確定元素要顯示的位置。

      第四步:根據前面的信息,繪制渲染樹。

      5.什么是響應式開發?

      響應式開發是前端開發工作比較常見的工作內容,隨著移動互聯網的發展,移動端設計越來越重要,很多項目都是移動端項目先開發,而后是PC端的開發,為了降低運營成本和開發成本,同一個網站要能兼容PC端和移動端顯示呼之欲出,進而響應式開發成了前端開發人員必備的技能,所以響應式開發的技術必須掌握。

      什么是響應式

      顧名思義,同一個網站兼容不同的大小的設備。如PC端、移動端(平板、橫屏、豎排)的顯示風格。

      需要用到的技術

      1.?Media Query(媒體查詢)

      用于查詢設備是否符合某一特定條件,這些特定條件包括屏幕尺寸,是否可觸摸,屏幕精度,橫屏豎屏等信息。

      2.?使用em或rem做尺寸單位

      用于文字大小的響應和彈性布局。

      3.?禁止頁面縮放

      4.?屏幕尺寸響應

      a) ?固定布局:頁面居中,兩邊留白,他能適應大于某個值一定范圍的寬度,但是如果太寬就會有很多留白,太窄會出現滾動條,在PC頁面上很常見。

      b) ?流動布局:屏幕尺寸在一定范圍內變化時,不改變模塊布局,只改變模塊尺寸比例。比固定布局更具響應能力,兩邊不留白,但是也只能適應有限的寬度變化范圍,否則模塊會被擠(拉)得不成樣子。

      c) ?自定義布局:上面幾種布局方式都無法跨域大尺寸變化,所以適當時候我們需要改變模塊的位置排列或者隱藏一些次要元素。

      d) ?柵格布局:這種布局方式使得模塊之間非常容易對齊,易于模塊位置的改變用于輔助自定義布局。

      響應式設計注意事項

      1.寬度不固定,可以使用百分比

      #head{width:100%;}

      #content{width:50%;}

      2. 圖片處理

      圖片的寬度和高度設置等比縮放,可以設置圖片的width為百分比,height:auto;

      背景圖片可以使用background-size 指定背景圖片的大小。

      6.html5有哪些新特性、移除了那些元素?

      題目涉及到范圍非常的大,如果要面面俱到顯然半天都答不完,可以先羅列出H5的一些新特性,不要回答那么具體,等面試官提具體的問題,所以在面試之前也要把這里的技術過一遍,至少每個技術也要做個小程序出來體驗一下。

      H5新特性

      關于前端的碎碎念5-web前端常見面試問題總結(1)

      增強了圖形渲染、影音、數據存儲、多任務處理等處理能力主要表現在

      繪畫 canvas;

      類似windows自帶的畫圖板,可繪制線、框、路徑、圖……,InternetExplorer 9、Firefox、Opera、Chrome 以及 Safari 支持 及其屬性和方法。

      畫圖需要的要素

      a)???筆,用筆可以畫線、圓、矩形、文本等

      b)???顏色

      c)???畫板

      由于畫布案例比較多,代碼比較復雜,可以在w3cschool上查看相關教程

      2)??本地離線存儲 localStorage

      長期存儲數據,瀏覽器關閉后數據不丟失;

      1.特點

      數據永久存儲,沒有時間限制;大小限制5M(夠用了);只存儲字符串。

      2.數據存取方式

      localStorage.a?=?3;//設置a為"3"?? localStorage["a"]?=?"sfsf";//設置a為"sfsf",覆蓋上面的值?? localStorage.setItem("b","isaac");//設置b為"isaac"?? var?a1?=?localStorage["a"];//獲取a的值?? var?a2?=?localStorage.a;//獲取a的值?? var?b?=?localStorage.getItem("b");//獲取b的值?? var?b2=?localStorage.key(0);//獲取第一個key的內容?? localStorage.removeItem("c");//清除c的值?? localStorage.clear();//清除所有的數據

      推薦使用:

      getItem()

      setItem()

      removeItem()

      3.事件監聽

      if(window.addEventListener){?? ?window.addEventListener("storage",handle_storage,false);//?? }else?if(window.attachEvent){?//兼容IE?? ?window.attachEvent("onstorage",handle_storage);?? }?? function?handle_storage(e){?? ?}

      對象e為localStorage對象,Chrome、Firefox支持差,IE支持較好。

      3)??sessionStorage的數據在瀏覽器關閉后自動刪除;操作參考localStorage

      4)??用于媒介回放的?video和?audio?元素;

      5)??語意化更好的內容元素,比如article、footer、header、nav、section;

      6)??表單控件,calendar、date、time、email、url、search;

      7)??新的技術webworker(專用線程)

      8)??websocketsocket通信

      9)??Geolocation?地理定位

      移除的元素

      純表現的元素

      默認字體,不設置字體,以此渲染

      字體標簽

      水平居中

      下劃線

      大字體

      中橫線

      文本等寬

      框架集

      </p><p><frame></p><p>HTML web前端</p><p> <strong>版權聲明:本文內容由網絡用戶投稿,版權歸原作者所有,本站不擁有其著作權,亦不承擔相應法律責任。如果您發現本站中有涉嫌抄襲或描述失實的內容,請聯系我們jiasou666@gmail.com 處理,核實后本網站將在24小時內刪除侵權內容。</strong> </p></div> <div id="28mmwaq" class="article_footer clear"> <div id="ugwe0y0" class="fr tag">標簽:<a href="http://m.bai1xia.com/news/tags-117.html">關于</a> <a href="http://m.bai1xia.com/news/tags-1610.html">前端</a> <a href="http://m.bai1xia.com/news/tags-4942.html">碎碎念</a> </div> <div id="ksuq0w0" class="bdsharebuttonbox fl share"> <div id="0y0uyo0" class="share-widget fl"> <div id="weeamqi" class="social-share" data-sites="wechat,weibo, qq, qzone"></div> </div> </div> </div> <!-- 廣告位ad4 --> <div id="u2k0u0a" class="post-navigation clear"> <div id="0gyis00" class="post-previous fl"> <span>上一篇:</span><a href="http://m.bai1xia.com/news/post/18633.html">Excel表格如何制作分類折線圖</a> </div> <div id="gkuuqko" class="post-next fr"> <span>下一篇:</span><a href="http://m.bai1xia.com/news/post/18637.html">NodeJS基礎入門教程(1)-一文讓你快速了解什么是NodeJS</a> </div> </div> </div> <div id="woa2u00" class="related_article"> <div id="ekueoeu" class="box_title clear"> <span><i class="icon fa fa-paper-plane"></i>相關文章</span> </div> <div id="i2yy0m8" class="related_list clear"> <article class="fl"> <div id="ms0ug0i" class="related_img"><a href="http://m.bai1xia.com/news/post/2906.html"><img src="http://m.bai1xia.com/news/zb_users/cache/ly_autoimg/m/MjkwNg.jpg"></a></div> <div id="omwueyc" class="related_detail"> <h3><a href="http://m.bai1xia.com/news/post/2906.html" title="網頁鐘表設計——純<a target="_blank" href="http://m.bai1xia.com/news/tags-1610.html"style="font-weight:bold;">前端</a>實現">網頁鐘表設計——純<a target="_blank" href="http://m.bai1xia.com/news/tags-1610.html"style="font-weight:bold;">前端</a>實現</a></h3> <div id="gqqo2c8" class="meta"> <span><i class="fa fa-eye"></i>837</span> <span><i class="fa fa-clock-o"></i>2022-05-30</span> </div> </div> </article> <article class="fl"> <div id="oggs2ei" class="related_img"><a href="http://m.bai1xia.com/news/post/15452.html"><img src="http://m.bai1xia.com/news/zb_users/upload/2023/08/wenzhangerweima.jpg"></a></div> <div id="wqcoms2" class="related_detail"> <h3><a href="http://m.bai1xia.com/news/post/15452.html" title="大<a target="_blank" href="http://m.bai1xia.com/news/tags-1610.html"style="font-weight:bold;">前端</a><a target="_blank" href="http://m.bai1xia.com/news/tags-78.html"style="font-weight:bold;">學習</a> -- NuxtJS學習筆記">大<a target="_blank" href="http://m.bai1xia.com/news/tags-1610.html"style="font-weight:bold;">前端</a><a target="_blank" href="http://m.bai1xia.com/news/tags-78.html"style="font-weight:bold;">學習</a> -- NuxtJS學習筆記</a></h3> <div id="go2e0ue" class="meta"> <span><i class="fa fa-eye"></i>837</span> <span><i class="fa fa-clock-o"></i>2022-05-30</span> </div> </div> </article> <article class="fl"> <div id="kgeaims" class="related_img"><a href="http://m.bai1xia.com/news/post/33514.html"><img src="http://m.bai1xia.com/news/zb_users/upload/2023/08/wenzhangerweima.jpg"></a></div> <div id="a0g0mew" class="related_detail"> <h3><a href="http://m.bai1xia.com/news/post/33514.html" title="<a target="_blank" href="http://m.bai1xia.com/news/tags-117.html"style="font-weight:bold;">關于</a>word中的多文檔窗口操作以下敘述中錯誤的是"><a target="_blank" href="http://m.bai1xia.com/news/tags-117.html"style="font-weight:bold;">關于</a>word中的多文檔窗口操作以下敘述中錯誤的是</a></h3> <div id="ksecmcu" class="meta"> <span><i class="fa fa-eye"></i>837</span> <span><i class="fa fa-clock-o"></i>2022-05-30</span> </div> </div> </article> </div> </div> <!--<p class="comment-disable sb br mb"><i class="iconfont icon-cry"></i>抱歉,評論功能暫時關閉!</p>--> </div> </div> <div id="0yiyg0o" class="sidebar"> <div class="gaywe0a" id="推薦文章" class="part clear 推薦文章"> <div id="kuqce0q" class="top"> <h3 class="title">推薦文章</h3> </div> <div id="c0yk0w0" class="side 推薦文章"><ul><ul class="hot_posts"> <li><h4><a href="http://m.bai1xia.com/news/post/132763.html" title="企業生產管理是什么,企業生產管理軟件">企業生產管理是什么,企業生產管理軟件</a></h4></li><li><h4><a href="http://m.bai1xia.com/news/post/136160.html" title="盤點進銷存軟件排行榜前十名">進盤點進銷存軟件排行榜前十名</a></h4></li><li><h4><a href="http://m.bai1xia.com/news/post/132779.html" title="進銷存系統哪個簡單好用?進銷存系統優點">進銷存系統哪個簡單好用?進銷存系統優點</a></h4></li><li><h4><a href="http://m.bai1xia.com/news/post/133648.html" title="工廠生產管理(工廠生產管理流程及制度)">工廠生產管理(工廠生產管理流程及制度)</a></h4></li><li><h4><a href="http://m.bai1xia.com/news/post/132780.html" title="生產管理軟件,機械制造業生產管理,制造業生產過程管理軟件">生產管理軟件,機械制造業生產管理,制造業生產過程管理軟件</a></h4></li><li><h4><a href="http://m.bai1xia.com/news/post/132776.html" title="進銷存軟件和ERP有什么區別?進銷存與erp軟件理解">進銷存軟件和ERP有什么區別?進銷存與erp軟件理解</a></h4></li><li><h4><a href="http://m.bai1xia.com/news/post/132974.html" title="進銷存如何進行庫存管理">進銷存如何進行庫存管理</a></h4></li><li><h4><a href="http://m.bai1xia.com/news/post/132269.html" title="excel銷售訂單管理系統(銷售訂單錄入系統)">如何利用excel制作銷售訂單管理系統?</a></h4></li><li><h4><a href="http://m.bai1xia.com/news/post/136946.html" title="數據庫訂單管理系統有哪些功能?數據庫訂單管理系統怎么設計?">數據庫訂單管理系統有哪些功能?數據庫訂單管理系統怎么設計?</a></h4></li><li><h4><a href="http://m.bai1xia.com/news/post/132312.html" title="數據庫訂單管理系統(訂單系統數據流圖)">什么是數據庫管理系統?</a></h4></li></ul></ul></div> </div> <div class="icccmgo" id="divPrevious" class="part clear previous"> <div id="oysgqg0" class="top"> <h3 class="title">最近發表</h3> </div> <div id="cy0mwcu" class="side divPrevious"><ul><li><a title="寵物集市-寵物集市華東、華南、華北排行榜一覽表" href="http://m.bai1xia.com/news/post/157796.html">寵物集市-寵物集市華東、華南、華北排行榜一覽表</a></li> <li><a title="京寵展-2025年時間表" href="http://m.bai1xia.com/news/post/157795.html">京寵展-2025年時間表</a></li> <li><a title="寵物集市在深圳哪里有?時間地址最新消息" href="http://m.bai1xia.com/news/post/157794.html">寵物集市在深圳哪里有?時間地址最新消息</a></li> <li><a title="亞洲寵物展2025年展會介紹" href="http://m.bai1xia.com/news/post/157793.html">亞洲寵物展2025年展會介紹</a></li> <li><a title="京寵展信息指南" href="http://m.bai1xia.com/news/post/157792.html">京寵展信息指南</a></li> <li><a title="寵物展會2025年時間表" href="http://m.bai1xia.com/news/post/157791.html">寵物展會2025年時間表</a></li> <li><a title="亞寵展、全球寵物產業風向標——亞洲寵物展覽會深度解析" href="http://m.bai1xia.com/news/post/157790.html">亞寵展、全球寵物產業風向標——亞洲寵物展覽會深度解析</a></li> <li><a title="2025年亞洲寵物展覽會、京寵展有哪些亮點" href="http://m.bai1xia.com/news/post/157789.html">2025年亞洲寵物展覽會、京寵展有哪些亮點</a></li> <li><a title="<a target="_blank" href="http://m.bai1xia.com/news/tags-10262.html"style="font-weight:bold;">wps</a>演示添加自定義按鈕<a target="_blank" href="http://m.bai1xia.com/news/tags-823.html"style="font-weight:bold;">設置</a>動作改變按順序播放" href="http://m.bai1xia.com/news/post/118206.html"><a target="_blank" href="http://m.bai1xia.com/news/tags-10262.html"style="font-weight:bold;">wps</a>演示添加自定義按鈕<a target="_blank" href="http://m.bai1xia.com/news/tags-823.html"style="font-weight:bold;">設置</a>動作改變按順序播放</a></li> <li><a title="如何將<a target="_blank" href="http://m.bai1xia.com/news/tags-13007.html"style="font-weight:bold;">WPS</a>行中的文本調整到行中" href="http://m.bai1xia.com/news/post/119027.html">如何將<a target="_blank" href="http://m.bai1xia.com/news/tags-13007.html"style="font-weight:bold;">WPS</a>行中的文本調整到行中</a></li> </ul></div> </div> <div class="emw0cwa" id="sidebar_ad" class="part clear sidebar_ad"> <div id="emiu2w0" class="part sidebar_ad"></div> </div> <div class="0y00ouk" id="hot_posts" class="part clear hot_posts"> <div id="cwwwsk2" class="top"> <h3 class="title">熱評文章</h3> </div> <ul class="hot_posts"><li><h4><a href="http://m.bai1xia.com/news/post/104011.html" title="<a target="_blank" href="http://m.bai1xia.com/news/tags-10179.html"style="font-weight:bold;">零代碼</a>開發是什么?2022<a target="_blank" href="http://m.bai1xia.com/news/tags-1.html"style="font-weight:bold;">低代碼</a>平臺排行榜">零代碼開發是什么?2022低代碼平臺排行榜</a></h4></li><li><h4><a href="http://m.bai1xia.com/news/post/131019.html" title="智能<a target="_blank" href="http://m.bai1xia.com/news/tags-14329.html"style="font-weight:bold;">進銷存庫存管理</a><a target="_blank" href="http://m.bai1xia.com/news/tags-56.html"style="font-weight:bold;">系統</a>(智慧進銷存)">智能進銷存庫存管理系統(智慧進銷存)</a></h4></li><li><h4><a href="http://m.bai1xia.com/news/post/73907.html" title="<a target="_blank" href="http://m.bai1xia.com/news/tags-14095.html"style="font-weight:bold;">在線文檔</a>哪家強?8款在線文檔編輯軟件推薦">在線文檔哪家強?8款在線文檔編輯軟件推薦</a></h4></li><li><h4><a href="http://m.bai1xia.com/news/post/102663.html" title="WPS2016怎么繪制簡單的價格表?">WPS2016怎么繪制簡單的價格表?</a></h4></li><li><h4><a href="http://m.bai1xia.com/news/post/55539.html" title="連鎖餐飲管理<a target="_blank" href="http://m.bai1xia.com/news/tags-56.html"style="font-weight:bold;">系統</a>的功能有哪些?餐飲服務系統的構成及工作程序">連鎖餐飲管理系統的功能有哪些?餐飲服務系統的構成及工</a></h4></li><li><h4><a href="http://m.bai1xia.com/news/post/132806.html" title="簡單<a target="_blank" href="http://m.bai1xia.com/news/tags-14329.html"style="font-weight:bold;">進銷存庫存管理</a>盤點">簡單進銷存庫存管理盤點</a></h4></li></ul> </div> <div class="suiqouy" id="divLinkage" class="part clear link"> <div id="keawum2" class="top"> <h3 class="title">友情鏈接</h3> </div> <div id="0kisewo" class="side divLinkage"><ul><li id="cieq800" class="link-item"><a href="http://m.bai1xia.com/" target="_blank" title="伙伴云">伙伴云</a></li><li id="0wqowcg" class="link-item"><a href="http://m.bai1xia.com/news/category-19.html" title="進銷存管理">進銷存管理</a></li><li id="wamwgy0" class="link-item"><a href="http://m.bai1xia.com/news/category-3.html" title="低代碼">低代碼</a></li><li id="q0s0kou" class="link-item"><a href="http://m.bai1xia.com/news/tags-12.html" target="_blank" title="Excel表格">Excel表格</a></li><li id="kcmkwcg" class="link-item"><a title="海威行">海威行</a></li><li id="0a0cmcs" class="link-item"><a title="FinClip">FinClip</a></li></ul></div> </div> </div> </div> </section> </div> <footer class="p-footer"> <div id="ci20m0g" class="contant_box"> <div id="cg0uqia" class="discover_tmt"> <h5 class="" style="font-size: 1px; color: white;">伙伴云</h5> <div id="kge2ewo" class="text_box"> <a title="toB數字化營銷SEO" style="font-size: 1px; color: white;">加搜toBSEO</a> <a title="小程序工具" style="font-size: 1px; color: white;">前端框架</a> <a title="小紅書營銷攻略" style="font-size: 1px; color: white;">小紅書營銷攻略</a> <a title="衍因科技" style="font-size: 1px; color: white;">衍因科技</a> <a title="FinClip 技術文檔" style="font-size: 1px; color: white;">小程序容器幫助中心</a> <a title="小程序開發行業洞察" style="font-size: 1px; color: white;">小程序開發行業洞察</a> <a title="全面預算管理資訊" style="font-size: 1px; color: white;">全面預算管理資訊</a> <a title="企微SCRM客戶管理干貨" style="font-size: 1px; color: white;">企微SCRM客戶管理干貨</a> <a title="3D視覺相機資訊" style="font-size: 1px; color: white;">3D視覺相機資訊</a> <a title="創冷科技無電制冷" style="font-size: 1px; color: #22292D;">創冷科技無電制冷</a> <a title="協作機器人資訊" style="font-size: 1px; color: #22292D;">協作機器人資訊</a> </div> </div> <div id="eymkk00" class="collaboration_box"> </div> <div id="kcmisgi" class="we_img_box clear"> <div id="ckwug00" class="img_box"> <img src="http://m.bai1xia.com/news/zb_users/theme/zblog5_news/image/ewm.png" alt="" class="hover_tmt"> </div> </div> </div> <p class="info"> <a target="_blank" rel="nofollow">京ICP備12038259號</a> <span> <a href="#"></a></span> </p> </footer> <div class="kgqqoim" id="backtop" class="backtop"> <div id="kuee00w" class="bt-box top"> <i class="fa fa-angle-up fa-2x"></i> </div> </div> <script charset="UTF-8" src="http://m.bai1xia.com/assets/js/sensorsdata.1.22.2.min.js"></script> <script charset="UTF-8"> var sensors = window['sensorsDataAnalytic201505']; sensors.init({ server_url: 'https://saapi.huoban.com/sa?project=production', heatmap:{scroll_notice_map:'not_collect'}, use_client_time:true, send_type:'beacon' }); sensors.quick('autoTrack'); </script> <script> var _hmt = _hmt || []; (function() { var hm = document.createElement("script"); hm.src = "https://hm.baidu.com/hm.js?6444c045836d6bf27124085a4f62c2a8"; var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(hm, s); })(); </script> <script> (()=>{const e="https://analyze.jiasou.cc/api/v1/page_view/report/",n="9fe06d4884e0461caaa1de5651164d43";let t=null;const o=new Proxy({},{get:(e,n)=>localStorage.getItem(window.btoa(n)),set:(e,n,t)=>!!t&&(localStorage.setItem(window.btoa(n),t),!0)});new Promise((t=>{if(o.fingerprint)t();else{const a=function(){var e={};if(e.userAgent=navigator.userAgent||"",e.plugins=[],navigator.plugins&&navigator.plugins.length>0)for(var n=0;n<navigator.plugins.length;n++){var t={name:navigator.plugins[n].name||"",filename:navigator.plugins[n].filename||"",description:navigator.plugins[n].description||""};e.plugins.push(t)}e.languages=navigator.languages||[navigator.language||""],e.timezone=(new Date).getTimezoneOffset(),e.screenResolution={width:window.screen.width||0,height:window.screen.height||0,pixelDepth:window.screen.pixelDepth||0,colorDepth:window.screen.colorDepth||0};var o=document.createElement("canvas").getContext("2d"),a=[],i=["monospace","sans-serif","serif"];for(n=0;n<i.length;n++){var r=i[n];o.font="12px "+r,o.measureText("abcdefghijklmnopqrstuvwxyz0123456789").width>0&&a.push(r)}return e.fonts=a,e.cookieEnabled=navigator.cookieEnabled||!1,e.localStorage=void 0!==window.localStorage,e.sessionStorage=void 0!==window.sessionStorage,e.doNotTrack="1"===navigator.doNotTrack||"1"===window.doNotTrack||"1"===navigator.msDoNotTrack||"yes"===navigator.doNotTrack,e}();fetch(`${e}u/`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({key:n,f:window.btoa(JSON.stringify(a))})}).then((e=>{console.debug("browser fingerprint sent"),200===e.status&&e.json().then((e=>{console.debug("browser fingerprint received",e),o.fingerprint=e.fp,t()}))}))}})).then((()=>{e&&o.fingerprint&&fetch(e+`?${new URLSearchParams({token:n}).toString()}`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({c:window.btoa(JSON.stringify({u:o.fingerprint,l:window.location.href,r:document.referrer}))})}).then((e=>{200==e.status&&e.json().then((e=>{e.track_id&&(t=e.track_id)}))}))})),window.addEventListener("beforeunload",(async n=>{t&&fetch(e+`?${new URLSearchParams({track_id:t}).toString()}`,{method:"GET",headers:{"Content-Type":"text/plain"},keepalive:!0}),n.returnValue=""}))})(); </script><script language="javascript" src="http://m.bai1xia.com/news/zb_users/plugin/ZF_ad/js/index.js?id=468"></script> <script language="javascript" src="http://m.bai1xia.com/news/zb_users/plugin/ZF_ad/js/ZF_ad__cookie.js"></script> <footer> <div class="friendship-link"> <p>感谢您访问我们的网站,您可能还对以下资源感兴趣:</p> <a href="http://m.bai1xia.com/" title="&#26085;&#26412;&#20122;&#27954;&#20013;&#21320;&#23383;&#24149;&#20081;&#30721;">&#26085;&#26412;&#20122;&#27954;&#20013;&#21320;&#23383;&#24149;&#20081;&#30721;</a> <div class="friend-links"> </div> </div> </footer> <a href="http://" target="_blank">久久亚洲欧美国产精品</a>| <a href="http://" target="_blank">国产99久久亚洲综合精品</a>| <a href="http://" target="_blank">亚洲日韩涩涩成人午夜私人影院</a>| <a href="http://" target="_blank">亚洲国产精品嫩草影院</a>| <a href="http://" target="_blank">7777久久亚洲中文字幕</a>| <a href="http://" target="_blank">亚洲一区精彩视频</a>| <a href="http://" target="_blank">亚洲一级特黄特黄的大片</a>| <a href="http://" target="_blank">亚洲va乱码一区二区三区</a>| <a href="http://" target="_blank">亚洲人妖女同在线播放</a>| <a href="http://" target="_blank">亚洲国产av美女网站</a>| <a href="http://" target="_blank">亚洲黄色中文字幕</a>| <a href="http://" target="_blank">亚洲精品国产免费</a>| <a href="http://" target="_blank">亚洲mv国产精品mv日本mv</a>| <a href="http://" target="_blank">久久精品国产亚洲av麻豆图片</a>| <a href="http://" target="_blank">亚洲人成网站在线观看播放动漫</a>| <a href="http://" target="_blank">亚洲国产精品xo在线观看</a>| <a href="http://" target="_blank">久久精品国产亚洲AV蜜臀色欲</a>| <a href="http://" target="_blank">亚洲中文字幕无码中文</a>| <a href="http://" target="_blank">色偷偷亚洲第一综合</a>| <a href="http://" target="_blank">va亚洲va日韩不卡在线观看</a>| <a href="http://" target="_blank">亚洲 国产 图片</a>| <a href="http://" target="_blank">国产日产亚洲系列最新</a>| <a href="http://" target="_blank">亚洲一区精品无码</a>| <a href="http://" target="_blank">亚洲AV无码久久精品成人 </a>| <a href="http://" target="_blank">亚洲AV日韩AV鸥美在线观看</a>| <a href="http://" target="_blank">亚洲va在线va天堂va888www</a>| <a href="http://" target="_blank">亚洲国产人成在线观看69网站 </a>| <a href="http://" target="_blank">久久精品亚洲综合</a>| <a href="http://" target="_blank">2022年亚洲午夜一区二区福利</a>| <a href="http://" target="_blank">亚洲欧洲日本国产</a>| <a href="http://" target="_blank">亚洲乱码在线观看</a>| <a href="http://" target="_blank">亚洲AV无码专区在线电影成人</a>| <a href="http://" target="_blank">自拍偷自拍亚洲精品播放</a>| <a href="http://" target="_blank">亚洲裸男gv网站</a>| <a href="http://" target="_blank">久久精品国产69国产精品亚洲</a>| <a href="http://" target="_blank">亚洲精选在线观看</a>| <a href="http://" target="_blank">亚洲一级高清在线中文字幕</a>| <a href="http://" target="_blank">亚洲欧美不卡高清在线</a>| <a href="http://" target="_blank">亚洲高清无码在线观看</a>| <a href="http://" target="_blank">亚洲人成影院在线无码按摩店</a>| <a href="http://" target="_blank">91情国产l精品国产亚洲区</a>| <script> (function(){ var bp = document.createElement('script'); var curProtocol = window.location.protocol.split(':')[0]; if (curProtocol === 'https') { bp.src = 'https://zz.bdstatic.com/linksubmit/push.js'; } else { bp.src = 'http://push.zhanzhang.baidu.com/push.js'; } var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(bp, s); })(); </script> </body><div id="mg00y" class="pl_css_ganrao" style="display: none;"><xmp id="mg00y"><strike id="mg00y"><menu id="mg00y"></menu></strike></xmp><noframes id="mg00y">

      <kbd id="mg00y"><pre id="mg00y"></pre></kbd>
        <kbd id="mg00y"><pre id="mg00y"></pre></kbd>