首頁 > web前端 > html教學 > 《Java Script DOM编程艺术》读书笔记--DOM_html/css_WEB-ITnose

《Java Script DOM编程艺术》读书笔记--DOM_html/css_WEB-ITnose

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
發布: 2016-06-21 08:51:41
原創
1532 人瀏覽過

1、文档:DOM中的“D”

"D"代表document(文档)

2、对象:DOM中的“O”

“O”代表object(对象) 对象的分类

  • 用户定义对象(user-defined object)
  • 内建对象(native object)
  • 宿主对象(host object)

window对象window对象对应着浏览器窗口本身,这个对象的属性和方法通常统称为BOM(浏览器对象模型)BOM提供了window.open和window.blur等方法。以至于被滥用于各种弹出窗口和下拉菜单

3、模型:DOM中的“M”

“M”代表“Model”(模型)DOM把一份文档表示为一棵树(数学意义上的概念)示例代码

<!DOCTYPE html><html lang="en">  <head>    <meta charset="utf-8" />    <title>Shoping List<title>  </head>  <body>     <h1>What to buy</h1>     <p title="a gentle reminder">Don’t forget to buy this stuff.<p>     <ul id="purchases">        <li> A tin of beans<li>        <li class="sale">Cheese<li>        <li class="sale important">Milk<li>        </ul>    <body>  </html>代码中<html>相当于树根,即根元素。<head>和<body>属于下一个分支,位于同一层次且互不包含,属于兄弟关系。<head>元素有两个子元素<meta>和<title>(属于兄弟关系)<body>元素有三个子元素<p>、<h1>、<ul>(这三个属于兄弟关系。<ul>也是一个父元素,有三个子元素,他们都是<li>元素。
登入後複製

如果你能把一个文档的各种元素想象成一棵家谱树,我们就可以用同样的术语描述DOM。但我觉得称为“节点树”更准确

4、节点

节点(node)属于网络术语,它表示网络中的一个连接点。一个网络就是由一些节点构成的集合。DOM也是同样的情况,文档是由节点构成的集合。

  • 元素节点
  • 文本节点
  • 属性节点

4、1元素节点

DOM的原子是元素节点(element node)诸如、

之类的元素。标签的名字就是元素的名字。元素也可以包含其他的元素。没有被包含在其他元素的唯一元素是元素,它是我们的节点树的根元素。

4、2文本节点

在上述例子中,

元素包含着文本“don't forget to buy this stuff.”它就是一个文本节点(text node)。

4、3属性节点

属性节点是对元素做出更具体的描述。例如,几乎所有的元素都有一个title属性,我们可以利用这个属性对包含在元素里的东西做出准确的描述:

<p title="a gentle reminder">Don't forget to buy this stuff.<p>
登入後複製

在DOM中title="a gentle reminder"是一个属性节点(attribute node),在前面的例子中无序清单元素

    有个id属性。有些清单元素
  • 有class属性。

    三者之间的关系.png

    4、4 CSS

    类似javascript脚本,我们也可以将CSS样式嵌在文档部分(style>标签之间)。也可以放在另外的一个文件里。**在HTML文件中引用CSS文件的格式:

    <link type="text/css" href="file.css" rel="stylesheet">
    登入後複製

    继承(inheritance)是CSS技术中的一项强大功能。1)、 class属性

    <p class="special">This pargraph has the special class<p><h2 class="special">So dose this headline</h2>
    登入後複製

    在样式表里可以为上面的代码进行定义

    special{font-style: italic;}
    登入後複製

    还可以这样定义

    h2.special{text-transform: uppercase;}
    登入後複製

    2)、id属性id属性的用途是给网页里的某个元素加上一个独一无二的标识符:

    <ul id="purchases">
    登入後複製

    样式表定义

    #purchases{border:1px solid white;background-color:#333;color:#ccc;padding:1em;}
    登入後複製
    #purchases li{font-weight:bold;}
    登入後複製

    4、5获取元素

    有3种DOM方法可获取元素节点,分别是通过元素ID、通过标签名和通过类名字来获取

    • getElementById
    • getElementsByTagName
    • getElementsByClassName

    1)getElementById

    此方法将返回一个与那个有着给定id属性值的元素节点对应的对象,在javascript里注意大小写。它是document对象特有的函数,在脚本代码里,函数名的后面必须跟有一对圆括号,这对圆括号包含这函数的参数。document.getElementById(id)在getElementById方法中只有一个参数:你想获得的那个元素的id属性的值,这个id属性必须放在单引号或双引号里。docment.getElementById("purchases")这个调用将返回一个对象,这个对象对应着document对象里的一个独一无二的元素,那个元素的HTLM id属性值是purchases

              Shoping List<title>  </head>  <body>     <h1>What to buy</h1>     <p title="a gentle reminder">Don’t forget to buy this stuff.<p>     <ul id="purchases">        <li> A tin of beans<li>        <li class="sale">Cheese<li>        <li class="sale important">Milk<li>        </ul>     <script>         alert(typeof docment.getElementById("purchases"));     </script>    <body>  </html>//利用`typeof`操作符进行验证(typeof操作符可以告诉我们它的操作数是一个字母、数值、函数、布尔值还是对象。</pre><div class="contentsignin">登入後複製</div></div>   <p>验证可得是一个对象</p>   <h3>2)getElementsByTagName</h3>   <p>getElementsByTagName方法返回一个对象数组,每个对象分别对应着文档里有着给定标签的一个元素。它的参数是标签的名字:decument.getElementByTagName(tag)</p>   <div class="code" style="position:relative; padding:0px; margin:0px;"><pre class="sycode" name="code">alert(document.getElementsByTagName("li").length);//显示文档里的列表元素个数为:3</pre><div class="contentsignin">登入後複製</div></div>   <div class="code" style="position:relative; padding:0px; margin:0px;"><pre class="sycode" name="code"><!DOCTYPE html><html lang="en">  <head>    <meta charset="utf-8" />    <title>Shoping List<title>  </head>  <body>     <h1>What to buy</h1>     <p title="a gentle reminder">Don’t forget to buy this stuff.<p>     <ul id="purchases">        <li> A tin of beans<li>        <li class="sale">Cheese<li>        <li class="sale important">Milk<li>        </ul>     <script>         var items=document.getElementByTagName("li");         for (var i=0; i<items.length;i++){         alert(typeof items[i]);         }     </script>    <body>  </html>//代码运行结果显示三个alert对话框,显示的消息都是“object”。</pre><div class="contentsignin">登入後複製</div></div>   <p>getElementsByTagName允许把一个通配符作为它的参数,通配符(*)必须放在引号里</p>   <div class="code" style="position:relative; padding:0px; margin:0px;"><pre class="sycode" name="code">alert(document.getElementsByTagName("*").length);//可以知道文档里有多少个元素节点</pre><div class="contentsignin">登入後複製</div></div>   <div class="code" style="position:relative; padding:0px; margin:0px;"><pre class="sycode" name="code">var shopping=document.getElementById("purchases");var items=shopping.getElementsByTagName("*");//程序运行结果,items数组将只包含id属性值是purshase的元素清单的元素</pre><div class="contentsignin">登入後複製</div></div>   <h3>3)getElementByClassName</h3>   <p>这个方法让我们能够通过class属性中的类名来访问元素,getElementByClassName也只接受一个参数,就是类名:</p>   <div class="code" style="position:relative; padding:0px; margin:0px;"><pre class="sycode" name="code">getElementByClassName(class)</pre><div class="contentsignin">登入後複製</div></div>   <p>这个方法的返回值也与getElementsByTagName类似,都是一个具有相同类名的元素的数组。</p>   <div class="code" style="position:relative; padding:0px; margin:0px;"><pre class="sycode" name="code">document.getElementsByClassName("sale")</pre><div class="contentsignin">登入後複製</div></div>   <p>利用这种方法还可有查找那些带有多个类名的元素。多个类名之间用空格分开即可</p>   <div class="code" style="position:relative; padding:0px; margin:0px;"><pre class="sycode" name="code">alert(document.getElementsByClassName("important sale").length);//对话框显示1,表示只有一个元素匹配。类名的顺序不重要,就算元素还带有更多类名也没有关系。</pre><div class="contentsignin">登入後複製</div></div>   <p>也可以和getElementById组合使用</p>   <div class="code" style="position:relative; padding:0px; margin:0px;"><pre class="sycode" name="code">     var shopping=document.getElementById("purchase");     var sales=shopping.getElementsByClassName("sale");sales数组中包含的就只是位于“purchases”列表中的带有“sale”类的元素。</pre><div class="contentsignin">登入後複製</div></div>   <p>getElementByClassName方法非常有用,但只有较新的浏览器才支持它。所以,需要使用已有的DOM方法来实现自己的getElementsByClassName。</p>   <div class="code" style="position:relative; padding:0px; margin:0px;"><pre class="sycode" name="code">function getElementsByClassName(node,classname){if (node.getElementsByClassName){//使用现有的方法return node.getElementsByTagName("*");for (var i=0; i<elems.length;i++){  if(elems[i].ClassName.indexof(classname)!= -1){results[results.length]=elems[i];          }      }return results;    }}</pre><div class="contentsignin">登入後複製</div></div>   <h4>5 获取和设置属性</h4>   <ul>       <li>
    <strong>getAttribute方法</strong>(获取元素的属性)</li>    <li>
    <strong>setAttribute方法</strong>(更改属性节点值)5、1getAttributegetAttribute是一个函数,它只有一个参数(你所要查询的属性的名称)</li>   </ul>                   </div>
                </div>
                <div style="height: 25px;">
                                    <div class="wzconBq" style="display: inline-flex;">
                        <span>相關標籤:</span>
                        <div class="wzcbqd">
                            <a onclick="hits_log(2,'www',this);" href-data="https://www.php.cn/zh-tw/search?word=《javascriptdom编程艺术》读书笔记--dom" target="_blank">《Java Script DOM编程艺术》读书笔记--DOM</a>                    </div>
                    </div>
                                    <div style="display: inline-flex;float: right; color:#333333;">來源:php.cn</div>
                                </div>
                <div class="wzconOtherwz">
                                        <a href="https://www.php.cn/zh-tw/faq/235368.html" title="Viewport 单位: vw, vh, vmin, vmax_html/css_WEB-ITnose">
                            <span>上一篇:Viewport 单位: vw, vh, vmin, vmax_html/css_WEB-ITnose</span>
                        </a>
                                        <a href="https://www.php.cn/zh-tw/faq/235376.html"  title="Bootstrap使用心得之文本_html/css_WEB-ITnose">
                            <span>下一篇:Bootstrap使用心得之文本_html/css_WEB-ITnose</span>
                        </a>
                                </div>
                <div class="wzconShengming">
           
                    <div class="bzsmdiv">本網站聲明</div>
                    <div>本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn</div>
                </div>
                <ins class="adsbygoogle"
         style="display:block"
         data-ad-format="autorelaxed"
         data-ad-client="ca-pub-5902227090019525"
         data-ad-slot="2507867629"></ins>
    <script>
         (adsbygoogle = window.adsbygoogle || []).push({});
    </script>
                <div class="wzconZzwz">
                    <div class="wzconZzwztitle">作者最新文章</div>
                    <ul>
                                                <li>
                                <div class="wzczzwzli">
                                    <span class="layui-badge-dots"></span>
                                    <a target="_blank" href="https://www.php.cn/zh-tw/faq/1796639331.html">什麼是 NullPointerException,如何修復它?</a>
                                </div>
                                <div>2024-10-22 09:46:29</div>
                            </li>
                                                <li>
                                <div class="wzczzwzli">
                                    <span class="layui-badge-dots"></span>
                                    <a target="_blank" href="https://www.php.cn/zh-tw/faq/1796629482.html">從新手到程式設計師:您的旅程從 C 基礎知識開始</a>
                                </div>
                                <div>2024-10-13 13:53:41</div>
                            </li>
                                                <li>
                                <div class="wzczzwzli">
                                    <span class="layui-badge-dots"></span>
                                    <a target="_blank" href="https://www.php.cn/zh-tw/faq/1796628545.html">使用 PHP 解鎖 Web 開發:初學者指南</a>
                                </div>
                                <div>2024-10-12 12:15:51</div>
                            </li>
                                                <li>
                                <div class="wzczzwzli">
                                    <span class="layui-badge-dots"></span>
                                    <a target="_blank" href="https://www.php.cn/zh-tw/faq/1796627928.html">揭秘 C:為新程式設計師提供一條清晰簡單的道路</a>
                                </div>
                                <div>2024-10-11 22:47:31</div>
                            </li>
                                                <li>
                                <div class="wzczzwzli">
                                    <span class="layui-badge-dots"></span>
                                    <a target="_blank" href="https://www.php.cn/zh-tw/faq/1796627806.html">釋放您的編碼潛力:絕對初學者的 C 編程</a>
                                </div>
                                <div>2024-10-11 19:36:51</div>
                            </li>
                                                <li>
                                <div class="wzczzwzli">
                                    <span class="layui-badge-dots"></span>
                                    <a target="_blank" href="https://www.php.cn/zh-tw/faq/1796627670.html">釋放你內心的程式設計師:C 絕對初學者</a>
                                </div>
                                <div>2024-10-11 15:50:41</div>
                            </li>
                                                <li>
                                <div class="wzczzwzli">
                                    <span class="layui-badge-dots"></span>
                                    <a target="_blank" href="https://www.php.cn/zh-tw/faq/1796627643.html">使用 C 自動化您的生活:適合初學者的腳本和工具</a>
                                </div>
                                <div>2024-10-11 15:07:41</div>
                            </li>
                                                <li>
                                <div class="wzczzwzli">
                                    <span class="layui-badge-dots"></span>
                                    <a target="_blank" href="https://www.php.cn/zh-tw/faq/1796627620.html">PHP 變得簡單:Web 開發的第一步</a>
                                </div>
                                <div>2024-10-11 14:21:21</div>
                            </li>
                                                <li>
                                <div class="wzczzwzli">
                                    <span class="layui-badge-dots"></span>
                                    <a target="_blank" href="https://www.php.cn/zh-tw/faq/1796627574.html">使用 Python 建立任何東西:釋放創造力的初學者指南</a>
                                </div>
                                <div>2024-10-11 12:59:11</div>
                            </li>
                                                <li>
                                <div class="wzczzwzli">
                                    <span class="layui-badge-dots"></span>
                                    <a target="_blank" href="https://www.php.cn/zh-tw/faq/1796627539.html">編碼的關鍵:為初學者釋放 Python 的力量</a>
                                </div>
                                <div>2024-10-11 12:17:31</div>
                            </li>
                                        </ul>
                </div>
                <div class="wzconZzwz">
                    <div class="wzconZzwztitle">最新問題</div>
                    <div class="wdsyContent">
                                            <div class="wdsyConDiv flexRow wdsyConDiv1">
                            <div class="wdcdContent flexColumn">
                                <a href="https://www.php.cn/zh-tw/wenda/.html"  target="_blank" title="java - springboot新手學習" class="wdcdcTitle">java - springboot新手學習</a>
                                <a href="https://www.php.cn/zh-tw/wenda/.html" class="wdcdcCons"></a>
                                <div class="wdcdcInfo flexRow">
                                    <div class="wdcdcileft">
                                        <span class="wdcdciSpan"> 來自於 1970-01-01 08:00:00</span>
                                    </div>
                                    <div class="wdcdciright flexRow">
                                        <div class="wdcdcirdz flexRow ira">  <b class="wdcdcirdzi"></b>0 </div>
                                        <div class="wdcdcirpl flexRow ira"><b  class="wdcdcirpli"></b>0</div>
                                        <div class="wdcdcirwatch flexRow ira"><b  class="wdcdcirwatchi"></b>0</div>
                                    </div>
                                </div>
                            </div>
                        </div>
                        <div class="wdsyConLine wdsyConLine2"></div>
                                            <div class="wdsyConDiv flexRow wdsyConDiv1">
                            <div class="wdcdContent flexColumn">
                                <a href="https://www.php.cn/zh-tw/wenda/.html"  target="_blank" title="spring - JavaWeb中 Service 層的事務問題" class="wdcdcTitle">spring - JavaWeb中 Service 層的事務問題</a>
                                <a href="https://www.php.cn/zh-tw/wenda/.html" class="wdcdcCons"></a>
                                <div class="wdcdcInfo flexRow">
                                    <div class="wdcdcileft">
                                        <span class="wdcdciSpan"> 來自於 1970-01-01 08:00:00</span>
                                    </div>
                                    <div class="wdcdciright flexRow">
                                        <div class="wdcdcirdz flexRow ira">  <b class="wdcdcirdzi"></b>0 </div>
                                        <div class="wdcdcirpl flexRow ira"><b  class="wdcdcirpli"></b>0</div>
                                        <div class="wdcdcirwatch flexRow ira"><b  class="wdcdcirwatchi"></b>0</div>
                                    </div>
                                </div>
                            </div>
                        </div>
                        <div class="wdsyConLine wdsyConLine2"></div>
                                            <div class="wdsyConDiv flexRow wdsyConDiv1">
                            <div class="wdcdContent flexColumn">
                                <a href="https://www.php.cn/zh-tw/wenda/.html"  target="_blank" title="java - wait(),notify(),notifyAll() T2 start! T2 end! T1 start! 為什麼會阻塞" class="wdcdcTitle">java - wait(),notify(),notifyAll() T2 start! T2 end! T1 start! 為什麼會阻塞</a>
                                <a href="https://www.php.cn/zh-tw/wenda/.html" class="wdcdcCons"></a>
                                <div class="wdcdcInfo flexRow">
                                    <div class="wdcdcileft">
                                        <span class="wdcdciSpan"> 來自於 1970-01-01 08:00:00</span>
                                    </div>
                                    <div class="wdcdciright flexRow">
                                        <div class="wdcdcirdz flexRow ira">  <b class="wdcdcirdzi"></b>0 </div>
                                        <div class="wdcdcirpl flexRow ira"><b  class="wdcdcirpli"></b>0</div>
                                        <div class="wdcdcirwatch flexRow ira"><b  class="wdcdcirwatchi"></b>0</div>
                                    </div>
                                </div>
                            </div>
                        </div>
                        <div class="wdsyConLine wdsyConLine2"></div>
                                            <div class="wdsyConDiv flexRow wdsyConDiv1">
                            <div class="wdcdContent flexColumn">
                                <a href="https://www.php.cn/zh-tw/wenda/.html"  target="_blank" title="java - C語言演算法題-韓信點兵 解法?" class="wdcdcTitle">java - C語言演算法題-韓信點兵 解法?</a>
                                <a href="https://www.php.cn/zh-tw/wenda/.html" class="wdcdcCons"></a>
                                <div class="wdcdcInfo flexRow">
                                    <div class="wdcdcileft">
                                        <span class="wdcdciSpan"> 來自於 1970-01-01 08:00:00</span>
                                    </div>
                                    <div class="wdcdciright flexRow">
                                        <div class="wdcdcirdz flexRow ira">  <b class="wdcdcirdzi"></b>0 </div>
                                        <div class="wdcdcirpl flexRow ira"><b  class="wdcdcirpli"></b>0</div>
                                        <div class="wdcdcirwatch flexRow ira"><b  class="wdcdcirwatchi"></b>0</div>
                                    </div>
                                </div>
                            </div>
                        </div>
                        <div class="wdsyConLine wdsyConLine2"></div>
                                            <div class="wdsyConDiv flexRow wdsyConDiv1">
                            <div class="wdcdContent flexColumn">
                                <a href="https://www.php.cn/zh-tw/wenda/.html"  target="_blank" title="java - 使用DDMS分析記憶體發現系統中inactive佔比重很大,這是什麼啊,有辦法對他進行GC嗎" class="wdcdcTitle">java - 使用DDMS分析記憶體發現系統中inactive佔比重很大,這是什麼啊,有辦法對他進行GC嗎</a>
                                <a href="https://www.php.cn/zh-tw/wenda/.html" class="wdcdcCons"></a>
                                <div class="wdcdcInfo flexRow">
                                    <div class="wdcdcileft">
                                        <span class="wdcdciSpan"> 來自於 1970-01-01 08:00:00</span>
                                    </div>
                                    <div class="wdcdciright flexRow">
                                        <div class="wdcdcirdz flexRow ira">  <b class="wdcdcirdzi"></b>0 </div>
                                        <div class="wdcdcirpl flexRow ira"><b  class="wdcdcirpli"></b>0</div>
                                        <div class="wdcdcirwatch flexRow ira"><b  class="wdcdcirwatchi"></b>0</div>
                                    </div>
                                </div>
                            </div>
                        </div>
                        <div class="wdsyConLine wdsyConLine2"></div>
                                        </div>
                </div>
    
                <div class="wzconZt" >
                    <div class="wzczt-title">
                        <div>相關專題</div>
                        <a href="https://www.php.cn/zh-tw/faq/zt" target="_blank">更多>
                        </a>
                    </div>
                    <div class="wzcttlist">
                        <ul>
                                                    <li class="ul-li">
                                <a target="_blank" href="https://www.php.cn/zh-tw/faq/bagfwz"><img src="https://img.php.cn/upload/subject/202407/22/2024072212272646246.jpg?x-oss-process=image/resize,m_fill,h_145,w_220" alt="幣安官方網站" /> </a>
                                <a target="_blank" href="https://www.php.cn/zh-tw/faq/bagfwz" class="title-a-spanl" title="幣安官方網站"><span>幣安官方網站</span> </a>
                            </li>
                                                    <li class="ul-li">
                                <a target="_blank" href="https://www.php.cn/zh-tw/faq/panelkj"><img src="https://img.php.cn/upload/subject/202407/22/2024072214012667615.jpg?x-oss-process=image/resize,m_fill,h_145,w_220" alt="panel控制項怎麼用" /> </a>
                                <a target="_blank" href="https://www.php.cn/zh-tw/faq/panelkj" class="title-a-spanl" title="panel控制項怎麼用"><span>panel控制項怎麼用</span> </a>
                            </li>
                                                    <li class="ul-li">
                                <a target="_blank" href="https://www.php.cn/zh-tw/faq/rhzvscodelyxp"><img src="https://img.php.cn/upload/subject/202407/22/2024072212142099312.jpg?x-oss-process=image/resize,m_fill,h_145,w_220" alt="如何在vscode裡運行python" /> </a>
                                <a target="_blank" href="https://www.php.cn/zh-tw/faq/rhzvscodelyxp" class="title-a-spanl" title="如何在vscode裡運行python"><span>如何在vscode裡運行python</span> </a>
                            </li>
                                                    <li class="ul-li">
                                <a target="_blank" href="https://www.php.cn/zh-tw/faq/bakwj"><img src="https://img.php.cn/upload/subject/202407/22/2024072214240525533.jpg?x-oss-process=image/resize,m_fill,h_145,w_220" alt="bak文件是什麼" /> </a>
                                <a target="_blank" href="https://www.php.cn/zh-tw/faq/bakwj" class="title-a-spanl" title="bak文件是什麼"><span>bak文件是什麼</span> </a>
                            </li>
                                                    <li class="ul-li">
                                <a target="_blank" href="https://www.php.cn/zh-tw/faq/functionssm"><img src="https://img.php.cn/upload/subject/202407/22/2024072214250857312.jpg?x-oss-process=image/resize,m_fill,h_145,w_220" alt="function是什麼" /> </a>
                                <a target="_blank" href="https://www.php.cn/zh-tw/faq/functionssm" class="title-a-spanl" title="function是什麼"><span>function是什麼</span> </a>
                            </li>
                                                    <li class="ul-li">
                                <a target="_blank" href="https://www.php.cn/zh-tw/faq/sqlzmonthsbet"><img src="https://img.php.cn/upload/subject/202407/22/2024072213293291058.jpg?x-oss-process=image/resize,m_fill,h_145,w_220" alt="SQL中months_between使用方法" /> </a>
                                <a target="_blank" href="https://www.php.cn/zh-tw/faq/sqlzmonthsbet" class="title-a-spanl" title="SQL中months_between使用方法"><span>SQL中months_between使用方法</span> </a>
                            </li>
                                                    <li class="ul-li">
                                <a target="_blank" href="https://www.php.cn/zh-tw/faq/cyyrjzmgczw"><img src="https://img.php.cn/upload/subject/202407/22/2024072212222347681.jpg?x-oss-process=image/resize,m_fill,h_145,w_220" alt="c語言軟體怎麼改成中文" /> </a>
                                <a target="_blank" href="https://www.php.cn/zh-tw/faq/cyyrjzmgczw" class="title-a-spanl" title="c語言軟體怎麼改成中文"><span>c語言軟體怎麼改成中文</span> </a>
                            </li>
                                                    <li class="ul-li">
                                <a target="_blank" href="https://www.php.cn/zh-tw/faq/oraclerac"><img src="https://img.php.cn/upload/subject/202407/22/2024072214063296083.jpg?x-oss-process=image/resize,m_fill,h_145,w_220" alt="Oracle中RAC的用法" /> </a>
                                <a target="_blank" href="https://www.php.cn/zh-tw/faq/oraclerac" class="title-a-spanl" title="Oracle中RAC的用法"><span>Oracle中RAC的用法</span> </a>
                            </li>
                                                </ul>
                    </div>
                </div>
            </div>
        </div>
    
        <div class="phpwzright">
        <ins class="adsbygoogle"
            style="display:block"
            data-ad-client="ca-pub-5902227090019525"
            data-ad-slot="3653428331"
            data-ad-format="auto"
            data-full-width-responsive="true"></ins>
        <script>
            (adsbygoogle = window.adsbygoogle || []).push({});
        </script>
            <div class="wzrOne">
                <div class="wzroTitle">熱門推薦</div>
                <div class="wzroList">
                    <ul>
                                                    <li>
                                    <div class="wzczzwzli">
                                        <span class="layui-badge-dots wzrolr"></span>
                                        <a style="height: auto;" title="url是什麼意思?" href="https://www.php.cn/zh-tw/faq/418772.html">url是什麼意思?</a>
                                    </div>
                                </li>
                                                    <li>
                                    <div class="wzczzwzli">
                                        <span class="layui-badge-dots wzrolr"></span>
                                        <a style="height: auto;" title="DOM是什麼意思" href="https://www.php.cn/zh-tw/faq/414303.html">DOM是什麼意思</a>
                                    </div>
                                </li>
                                                    <li>
                                    <div class="wzczzwzli">
                                        <span class="layui-badge-dots wzrolr"></span>
                                        <a style="height: auto;" title="如何改變圖片大小" href="https://www.php.cn/zh-tw/faq/414252.html">如何改變圖片大小</a>
                                    </div>
                                </li>
                                                    <li>
                                    <div class="wzczzwzli">
                                        <span class="layui-badge-dots wzrolr"></span>
                                        <a style="height: auto;" title="HTML中如何將字型加粗" href="https://www.php.cn/zh-tw/faq/414520.html">HTML中如何將字型加粗</a>
                                    </div>
                                </li>
                                                    <li>
                                    <div class="wzczzwzli">
                                        <span class="layui-badge-dots wzrolr"></span>
                                        <a style="height: auto;" title="html圖片大小如何設定" href="https://www.php.cn/zh-tw/faq/475145.html">html圖片大小如何設定</a>
                                    </div>
                                </li>
                                        </ul>
                </div>
            </div>
            <script src="https://sw.php.cn/hezuo/cac1399ab368127f9b113b14eb3316d0.js" type="text/javascript"></script>
            <div class="wzrThree">
                <div class="wzrthree-title">
                    <div>熱門教學</div>
                    <a target="_blank" href="https://www.php.cn/zh-tw/course.html">更多>
                    </a>
                </div>
                <div class="wzrthreelist swiper2">
                    <div class="wzrthreeTab  swiper-wrapper">
                        <div class="check tabdiv swiper-slide" data-id="one">相關教學 <div></div></div>
                        <div class="tabdiv swiper-slide" data-id="two">熱門推薦<div></div></div>
                        <div class="tabdiv swiper-slide" data-id="three">最新課程<div></div></div>
                    </div>
                    <ul class="one">
                                                    <li>
                                    <a target="_blank" href="https://www.php.cn/zh-tw/course/812.html" title="最新ThinkPHP 5.1全球首發影片教學(60天成就PHP大牛線上訓練課程)" class="wzrthreelaimg">
                                        <img src="https://img.php.cn/upload/course/000/000/041/620debc3eab3f377.jpg" alt="最新ThinkPHP 5.1全球首發影片教學(60天成就PHP大牛線上訓練課程)"/>
                                    </a>
                                    <div class="wzrthree-right">
                                        <a target="_blank" title="最新ThinkPHP 5.1全球首發影片教學(60天成就PHP大牛線上訓練課程)" href="https://www.php.cn/zh-tw/course/812.html">最新ThinkPHP 5.1全球首發影片教學(60天成就PHP大牛線上訓練課程)</a>
                                        <div class="wzrthreerb">
                                            <div>1429928 <b class="kclbcollectb"></b></div>
                                         
                                                                                        <div class="courseICollection" data-id="812">
                                                    <b class="nofollow small-nocollect"></b>
                                                </div>
                                                                                </div>
                                    </div>
                                </li>
                                                    <li>
                                    <a target="_blank" href="https://www.php.cn/zh-tw/course/74.html" title="php入門教程之一週學會PHP" class="wzrthreelaimg">
                                        <img src="https://img.php.cn/upload/course/000/000/068/6253d1e28ef5c345.png" alt="php入門教程之一週學會PHP"/>
                                    </a>
                                    <div class="wzrthree-right">
                                        <a target="_blank" title="php入門教程之一週學會PHP" href="https://www.php.cn/zh-tw/course/74.html">php入門教程之一週學會PHP</a>
                                        <div class="wzrthreerb">
                                            <div>4282044 <b class="kclbcollectb"></b></div>
                                         
                                                                                        <div class="courseICollection" data-id="74">
                                                    <b class="nofollow small-nocollect"></b>
                                                </div>
                                                                                </div>
                                    </div>
                                </li>
                                                    <li>
                                    <a target="_blank" href="https://www.php.cn/zh-tw/course/286.html" title="JAVA 初級入門影片教學" class="wzrthreelaimg">
                                        <img src="https://img.php.cn/upload/course/000/000/068/62590a2bacfd9379.png" alt="JAVA 初級入門影片教學"/>
                                    </a>
                                    <div class="wzrthree-right">
                                        <a target="_blank" title="JAVA 初級入門影片教學" href="https://www.php.cn/zh-tw/course/286.html">JAVA 初級入門影片教學</a>
                                        <div class="wzrthreerb">
                                            <div>2598364 <b class="kclbcollectb"></b></div>
                                         
                                                                                        <div class="courseICollection" data-id="286">
                                                    <b class="nofollow small-nocollect"></b>
                                                </div>
                                                                                </div>
                                    </div>
                                </li>
                                                    <li>
                                    <a target="_blank" href="https://www.php.cn/zh-tw/course/504.html" title="小甲魚零基礎入門學習Python影片教學" class="wzrthreelaimg">
                                        <img src="https://img.php.cn/upload/course/000/000/068/62590a67ce3a6655.png" alt="小甲魚零基礎入門學習Python影片教學"/>
                                    </a>
                                    <div class="wzrthree-right">
                                        <a target="_blank" title="小甲魚零基礎入門學習Python影片教學" href="https://www.php.cn/zh-tw/course/504.html">小甲魚零基礎入門學習Python影片教學</a>
                                        <div class="wzrthreerb">
                                            <div>511985 <b class="kclbcollectb"></b></div>
                                         
                                                                                        <div class="courseICollection" data-id="504">
                                                    <b class="nofollow small-nocollect"></b>
                                                </div>
                                                                                </div>
                                    </div>
                                </li>
                                                    <li>
                                    <a target="_blank" href="https://www.php.cn/zh-tw/course/2.html" title="PHP 零基礎入門教學" class="wzrthreelaimg">
                                        <img src="https://img.php.cn/upload/course/000/000/068/6253de27bc161468.png" alt="PHP 零基礎入門教學"/>
                                    </a>
                                    <div class="wzrthree-right">
                                        <a target="_blank" title="PHP 零基礎入門教學" href="https://www.php.cn/zh-tw/course/2.html">PHP 零基礎入門教學</a>
                                        <div class="wzrthreerb">
                                            <div>870093 <b class="kclbcollectb"></b></div>
                                         
                                                                                        <div class="courseICollection" data-id="2">
                                                    <b class="nofollow small-nocollect"></b>
                                                </div>
                                                                                </div>
                                    </div>
                                </li>
                                        </ul>
                    <ul class="two" style="display: none;">
                                                <li>
                                <a target="_blank" href="https://www.php.cn/zh-tw/course/812.html" title="最新ThinkPHP 5.1全球首發影片教學(60天成就PHP大牛線上訓練課程)" class="wzrthreelaimg">
                                    <img src="https://img.php.cn/upload/course/000/000/041/620debc3eab3f377.jpg" alt="最新ThinkPHP 5.1全球首發影片教學(60天成就PHP大牛線上訓練課程)"/>
                                </a>
                                <div class="wzrthree-right">
                                    <a target="_blank" title="最新ThinkPHP 5.1全球首發影片教學(60天成就PHP大牛線上訓練課程)" href="https://www.php.cn/zh-tw/course/812.html">最新ThinkPHP 5.1全球首發影片教學(60天成就PHP大牛線上訓練課程)</a>
                                    <div class="wzrthreerb">
                                        <div >1429928次學習</div>
                                                                                    <div class="courseICollection" data-id="812">
                                                    <b class="nofollow small-nocollect"></b>
                                                </div>
                                                                            </div>
                                </div>
                            </li>
                                                <li>
                                <a target="_blank" href="https://www.php.cn/zh-tw/course/286.html" title="JAVA 初級入門影片教學" class="wzrthreelaimg">
                                    <img src="https://img.php.cn/upload/course/000/000/068/62590a2bacfd9379.png" alt="JAVA 初級入門影片教學"/>
                                </a>
                                <div class="wzrthree-right">
                                    <a target="_blank" title="JAVA 初級入門影片教學" href="https://www.php.cn/zh-tw/course/286.html">JAVA 初級入門影片教學</a>
                                    <div class="wzrthreerb">
                                        <div >2598364次學習</div>
                                                                                    <div class="courseICollection" data-id="286">
                                                    <b class="nofollow small-nocollect"></b>
                                                </div>
                                                                            </div>
                                </div>
                            </li>
                                                <li>
                                <a target="_blank" href="https://www.php.cn/zh-tw/course/504.html" title="小甲魚零基礎入門學習Python影片教學" class="wzrthreelaimg">
                                    <img src="https://img.php.cn/upload/course/000/000/068/62590a67ce3a6655.png" alt="小甲魚零基礎入門學習Python影片教學"/>
                                </a>
                                <div class="wzrthree-right">
                                    <a target="_blank" title="小甲魚零基礎入門學習Python影片教學" href="https://www.php.cn/zh-tw/course/504.html">小甲魚零基礎入門學習Python影片教學</a>
                                    <div class="wzrthreerb">
                                        <div >511985次學習</div>
                                                                                    <div class="courseICollection" data-id="504">
                                                    <b class="nofollow small-nocollect"></b>
                                                </div>
                                                                            </div>
                                </div>
                            </li>
                                                <li>
                                <a target="_blank" href="https://www.php.cn/zh-tw/course/901.html" title="Web前端開發極速入門" class="wzrthreelaimg">
                                    <img src="https://img.php.cn/upload/course/000/000/067/64be28a53a4f6310.png" alt="Web前端開發極速入門"/>
                                </a>
                                <div class="wzrthree-right">
                                    <a target="_blank" title="Web前端開發極速入門" href="https://www.php.cn/zh-tw/course/901.html">Web前端開發極速入門</a>
                                    <div class="wzrthreerb">
                                        <div >216482次學習</div>
                                                                                    <div class="courseICollection" data-id="901">
                                                    <b class="nofollow small-nocollect"></b>
                                                </div>
                                                                            </div>
                                </div>
                            </li>
                                                <li>
                                <a target="_blank" href="https://www.php.cn/zh-tw/course/234.html" title="零基礎精通 PS 影片教學" class="wzrthreelaimg">
                                    <img src="https://img.php.cn/upload/course/000/000/068/62611f57ed0d4840.jpg" alt="零基礎精通 PS 影片教學"/>
                                </a>
                                <div class="wzrthree-right">
                                    <a target="_blank" title="零基礎精通 PS 影片教學" href="https://www.php.cn/zh-tw/course/234.html">零基礎精通 PS 影片教學</a>
                                    <div class="wzrthreerb">
                                        <div >905447次學習</div>
                                                                                    <div class="courseICollection" data-id="234">
                                                    <b class="nofollow small-nocollect"></b>
                                                </div>
                                                                            </div>
                                </div>
                            </li>
                                        </ul>
                    <ul class="three" style="display: none;">
                                                <li>
                                <a target="_blank" href="https://www.php.cn/zh-tw/course/1648.html" title="【web前端】Node.js快速入門" class="wzrthreelaimg">
                                    <img src="https://img.php.cn/upload/course/000/000/067/662b5d34ba7c0227.png" alt="【web前端】Node.js快速入門"/>
                                </a>
                                <div class="wzrthree-right">
                                    <a target="_blank" title="【web前端】Node.js快速入門" href="https://www.php.cn/zh-tw/course/1648.html">【web前端】Node.js快速入門</a>
                                    <div class="wzrthreerb">
                                        <div >8511次學習</div>
                                                                                    <div class="courseICollection" data-id="1648">
                                                    <b class="nofollow small-nocollect"></b>
                                                </div>
                                                                            </div>
                                </div>
                            </li>
                                                <li>
                                <a target="_blank" href="https://www.php.cn/zh-tw/course/1647.html" title="國外Web開發全端課程全集" class="wzrthreelaimg">
                                    <img src="https://img.php.cn/upload/course/000/000/067/6628cc96e310c937.png" alt="國外Web開發全端課程全集"/>
                                </a>
                                <div class="wzrthree-right">
                                    <a target="_blank" title="國外Web開發全端課程全集" href="https://www.php.cn/zh-tw/course/1647.html">國外Web開發全端課程全集</a>
                                    <div class="wzrthreerb">
                                        <div >6821次學習</div>
                                                                                    <div class="courseICollection" data-id="1647">
                                                    <b class="nofollow small-nocollect"></b>
                                                </div>
                                                                            </div>
                                </div>
                            </li>
                                                <li>
                                <a target="_blank" href="https://www.php.cn/zh-tw/course/1646.html" title="Go語言實戰之 GraphQL" class="wzrthreelaimg">
                                    <img src="https://img.php.cn/upload/course/000/000/067/662221173504a436.png" alt="Go語言實戰之 GraphQL"/>
                                </a>
                                <div class="wzrthree-right">
                                    <a target="_blank" title="Go語言實戰之 GraphQL" href="https://www.php.cn/zh-tw/course/1646.html">Go語言實戰之 GraphQL</a>
                                    <div class="wzrthreerb">
                                        <div >5661次學習</div>
                                                                                    <div class="courseICollection" data-id="1646">
                                                    <b class="nofollow small-nocollect"></b>
                                                </div>
                                                                            </div>
                                </div>
                            </li>
                                                <li>
                                <a target="_blank" href="https://www.php.cn/zh-tw/course/1645.html" title="550W粉絲大佬手把手從零學JavaScript" class="wzrthreelaimg">
                                    <img src="https://img.php.cn/upload/course/000/000/067/662077e163124646.png" alt="550W粉絲大佬手把手從零學JavaScript"/>
                                </a>
                                <div class="wzrthree-right">
                                    <a target="_blank" title="550W粉絲大佬手把手從零學JavaScript" href="https://www.php.cn/zh-tw/course/1645.html">550W粉絲大佬手把手從零學JavaScript</a>
                                    <div class="wzrthreerb">
                                        <div >757次學習</div>
                                                                                    <div class="courseICollection" data-id="1645">
                                                    <b class="nofollow small-nocollect"></b>
                                                </div>
                                                                            </div>
                                </div>
                            </li>
                                                <li>
                                <a target="_blank" href="https://www.php.cn/zh-tw/course/1644.html" title="python大神Mosh,零基礎小白6小時完全入門" class="wzrthreelaimg">
                                    <img src="https://img.php.cn/upload/course/000/000/067/6616418ca80b8916.png" alt="python大神Mosh,零基礎小白6小時完全入門"/>
                                </a>
                                <div class="wzrthree-right">
                                    <a target="_blank" title="python大神Mosh,零基礎小白6小時完全入門" href="https://www.php.cn/zh-tw/course/1644.html">python大神Mosh,零基礎小白6小時完全入門</a>
                                    <div class="wzrthreerb">
                                        <div >28989次學習</div>
                                                                                    <div class="courseICollection" data-id="1644">
                                                    <b class="nofollow small-nocollect"></b>
                                                </div>
                                                                            </div>
                                </div>
                            </li>
                                        </ul>
                </div>
                <script>
                    var mySwiper = new Swiper('.swiper2', {
                                autoplay: false,//可选选项,自动滑动
                                slidesPerView : 'auto',
                            })
                    $('.wzrthreeTab>div').click(function(e){
                        $('.wzrthreeTab>div').removeClass('check')
                        $(this).addClass('check')
                        $('.wzrthreelist>ul').css('display','none')
                        $('.'+e.currentTarget.dataset.id).show()
                    })
                </script>
            </div>
    
            <div class="wzrFour">
                <div class="wzrfour-title">
                    <div>最新下載</div>
                    <a href="https://www.php.cn/zh-tw/xiazai">更多>
                    </a>
                </div>
                            <script>
                    $(document).ready(function(){
                        var sjyx_banSwiper = new Swiper(".sjyx_banSwiperwz",{
                            speed:1000,
                            autoplay:{
                                delay:3500,
                                disableOnInteraction: false,
                            },
                            pagination:{
                                el:'.sjyx_banSwiperwz .swiper-pagination',
                                clickable :false,
                            },
                            loop:true
                        })
                    })
                </script>
                <div class="wzrfourList swiper3">
                    <div class="wzrfourlTab swiper-wrapper">
                        <div class="check swiper-slide" data-id="onef">網站特效 <div></div></div>
                        <div class="swiper-slide" data-id="twof">網站源碼<div></div></div>
                        <div class="swiper-slide" data-id="threef">網站素材<div></div></div>
                        <div class="swiper-slide" data-id="fourf">前端模板<div></div></div>
                    </div>
                    <ul class="onef">
                                                <li>
                                <div class="wzrfourli">
                                    <span class="layui-badge-dots wzrflr"></span>
                                    <a target="_blank"  title="jQuery企業留言表單聯絡程式碼" href="https://www.php.cn/zh-tw/toolset/js-special-effects/8071">[表單按鈕] jQuery企業留言表單聯絡程式碼</a>
                                </div>
                            </li>
                                                <li>
                                <div class="wzrfourli">
                                    <span class="layui-badge-dots wzrflr"></span>
                                    <a target="_blank"  title="HTML5 MP3音樂盒播放特效" href="https://www.php.cn/zh-tw/toolset/js-special-effects/8070">[播放器特效] HTML5 MP3音樂盒播放特效</a>
                                </div>
                            </li>
                                                <li>
                                <div class="wzrfourli">
                                    <span class="layui-badge-dots wzrflr"></span>
                                    <a target="_blank"  title="HTML5酷炫粒子動畫導覽選單特效" href="https://www.php.cn/zh-tw/toolset/js-special-effects/8069">[選單導航] HTML5酷炫粒子動畫導覽選單特效</a>
                                </div>
                            </li>
                                                <li>
                                <div class="wzrfourli">
                                    <span class="layui-badge-dots wzrflr"></span>
                                    <a target="_blank"  title="jQuery可視化表單拖曳編輯程式碼" href="https://www.php.cn/zh-tw/toolset/js-special-effects/8068">[表單按鈕] jQuery可視化表單拖曳編輯程式碼</a>
                                </div>
                            </li>
                                                <li>
                                <div class="wzrfourli">
                                    <span class="layui-badge-dots wzrflr"></span>
                                    <a target="_blank"  title="VUE.JS仿酷狗音樂播放器代碼" href="https://www.php.cn/zh-tw/toolset/js-special-effects/8067">[播放器特效] VUE.JS仿酷狗音樂播放器代碼</a>
                                </div>
                            </li>
                                                <li>
                                <div class="wzrfourli">
                                    <span class="layui-badge-dots wzrflr"></span>
                                    <a target="_blank"  title="經典html5推箱子小遊戲" href="https://www.php.cn/zh-tw/toolset/js-special-effects/8066">[html5特效] 經典html5推箱子小遊戲</a>
                                </div>
                            </li>
                                                <li>
                                <div class="wzrfourli">
                                    <span class="layui-badge-dots wzrflr"></span>
                                    <a target="_blank"  title="jQuery滾動添加或減少圖片特效" href="https://www.php.cn/zh-tw/toolset/js-special-effects/8065">[圖片特效] jQuery滾動添加或減少圖片特效</a>
                                </div>
                            </li>
                                                <li>
                                <div class="wzrfourli">
                                    <span class="layui-badge-dots wzrflr"></span>
                                    <a target="_blank"  title="CSS3個人相簿封面懸停放大特效" href="https://www.php.cn/zh-tw/toolset/js-special-effects/8064">[相簿特效] CSS3個人相簿封面懸停放大特效</a>
                                </div>
                            </li>
                                        </ul>
                    <ul class="twof" style="display:none">
                                                <li>
                                <div class="wzrfourli">
                                    <span class="layui-badge-dots wzrflr"></span>
                                    <a href="https://www.php.cn/zh-tw/toolset/website-source-code/8328" title="家居裝潢清潔維修服務公司網站模板" target="_blank">[前端模板] 家居裝潢清潔維修服務公司網站模板</a>
                                </div>
                            </li>
                                                <li>
                                <div class="wzrfourli">
                                    <span class="layui-badge-dots wzrflr"></span>
                                    <a href="https://www.php.cn/zh-tw/toolset/website-source-code/8327" title="清新配色個人求職履歷引導頁模板" target="_blank">[前端模板] 清新配色個人求職履歷引導頁模板</a>
                                </div>
                            </li>
                                                <li>
                                <div class="wzrfourli">
                                    <span class="layui-badge-dots wzrflr"></span>
                                    <a href="https://www.php.cn/zh-tw/toolset/website-source-code/8326" title="設計師創意求職履歷網頁模板" target="_blank">[前端模板] 設計師創意求職履歷網頁模板</a>
                                </div>
                            </li>
                                                <li>
                                <div class="wzrfourli">
                                    <span class="layui-badge-dots wzrflr"></span>
                                    <a href="https://www.php.cn/zh-tw/toolset/website-source-code/8325" title="現代工程建築公司網站模板" target="_blank">[前端模板] 現代工程建築公司網站模板</a>
                                </div>
                            </li>
                                                <li>
                                <div class="wzrfourli">
                                    <span class="layui-badge-dots wzrflr"></span>
                                    <a href="https://www.php.cn/zh-tw/toolset/website-source-code/8324" title="教育服務機構響應式HTML5模板" target="_blank">[前端模板] 教育服務機構響應式HTML5模板</a>
                                </div>
                            </li>
                                                <li>
                                <div class="wzrfourli">
                                    <span class="layui-badge-dots wzrflr"></span>
                                    <a href="https://www.php.cn/zh-tw/toolset/website-source-code/8323" title="網上電子書店商城網站模板" target="_blank">[前端模板] 網上電子書店商城網站模板</a>
                                </div>
                            </li>
                                                <li>
                                <div class="wzrfourli">
                                    <span class="layui-badge-dots wzrflr"></span>
                                    <a href="https://www.php.cn/zh-tw/toolset/website-source-code/8322" title="IT技術解決互聯網公司網站模板" target="_blank">[前端模板] IT技術解決互聯網公司網站模板</a>
                                </div>
                            </li>
                                                <li>
                                <div class="wzrfourli">
                                    <span class="layui-badge-dots wzrflr"></span>
                                    <a href="https://www.php.cn/zh-tw/toolset/website-source-code/8321" title="紫色風格外匯交易服務網站模板" target="_blank">[前端模板] 紫色風格外匯交易服務網站模板</a>
                                </div>
                            </li>
                                        </ul>
                    <ul class="threef" style="display:none">
                                                <li>
                                <div class="wzrfourli">
                                    <span class="layui-badge-dots wzrflr"></span>
                                    <a href="https://www.php.cn/zh-tw/toolset/website-materials/3078"  target="_blank"  title="可愛的夏天元素向量素材(EPS+PNG)">[PNG素材] 可愛的夏天元素向量素材(EPS+PNG)</a>
                                </div>
                            </li>
                                                <li>
                                <div class="wzrfourli">
                                    <span class="layui-badge-dots wzrflr"></span>
                                    <a href="https://www.php.cn/zh-tw/toolset/website-materials/3077"  target="_blank"  title="四個紅色的 2023 畢業徽章的向量素材(AI+EPS+PNG)">[PNG素材] 四個紅色的 2023 畢業徽章的向量素材(AI+EPS+PNG)</a>
                                </div>
                            </li>
                                                <li>
                                <div class="wzrfourli">
                                    <span class="layui-badge-dots wzrflr"></span>
                                    <a href="https://www.php.cn/zh-tw/toolset/website-materials/3076"  target="_blank"  title="唱歌的小鳥和裝滿花朵的推車設計春天banner向量素材(AI+EPS)">[banner圖] 唱歌的小鳥和裝滿花朵的推車設計春天banner向量素材(AI+EPS)</a>
                                </div>
                            </li>
                                                <li>
                                <div class="wzrfourli">
                                    <span class="layui-badge-dots wzrflr"></span>
                                    <a href="https://www.php.cn/zh-tw/toolset/website-materials/3075"  target="_blank"  title="金色的畢業帽向量素材(EPS+PNG)">[PNG素材] 金色的畢業帽向量素材(EPS+PNG)</a>
                                </div>
                            </li>
                                                <li>
                                <div class="wzrfourli">
                                    <span class="layui-badge-dots wzrflr"></span>
                                    <a href="https://www.php.cn/zh-tw/toolset/website-materials/3074"  target="_blank"  title="黑白風格的山脈圖示向量素材(EPS+PNG)">[PNG素材] 黑白風格的山脈圖示向量素材(EPS+PNG)</a>
                                </div>
                            </li>
                                                <li>
                                <div class="wzrfourli">
                                    <span class="layui-badge-dots wzrflr"></span>
                                    <a href="https://www.php.cn/zh-tw/toolset/website-materials/3073"  target="_blank"  title="不同顏色披風和不同姿勢的超級英雄剪影向量素材(EPS+PNG)">[PNG素材] 不同顏色披風和不同姿勢的超級英雄剪影向量素材(EPS+PNG)</a>
                                </div>
                            </li>
                                                <li>
                                <div class="wzrfourli">
                                    <span class="layui-badge-dots wzrflr"></span>
                                    <a href="https://www.php.cn/zh-tw/toolset/website-materials/3072"  target="_blank"  title="扁平風格的植樹節banner向量素材(AI+EPS)">[banner圖] 扁平風格的植樹節banner向量素材(AI+EPS)</a>
                                </div>
                            </li>
                                                <li>
                                <div class="wzrfourli">
                                    <span class="layui-badge-dots wzrflr"></span>
                                    <a href="https://www.php.cn/zh-tw/toolset/website-materials/3071"  target="_blank"  title="九種漫畫風格的爆炸聊天氣泡向量素材(EPS+PNG)">[PNG素材] 九種漫畫風格的爆炸聊天氣泡向量素材(EPS+PNG)</a>
                                </div>
                            </li>
                                        </ul>
                    <ul class="fourf" style="display:none">
                                                <li>
                                <div class="wzrfourli">
                                    <span class="layui-badge-dots wzrflr"></span>
                                    <a href="https://www.php.cn/zh-tw/toolset/website-source-code/8328"  target="_blank" title="家居裝潢清潔維修服務公司網站模板">[前端模板] 家居裝潢清潔維修服務公司網站模板</a>
                                </div>
                            </li>
                                                <li>
                                <div class="wzrfourli">
                                    <span class="layui-badge-dots wzrflr"></span>
                                    <a href="https://www.php.cn/zh-tw/toolset/website-source-code/8327"  target="_blank" title="清新配色個人求職履歷引導頁模板">[前端模板] 清新配色個人求職履歷引導頁模板</a>
                                </div>
                            </li>
                                                <li>
                                <div class="wzrfourli">
                                    <span class="layui-badge-dots wzrflr"></span>
                                    <a href="https://www.php.cn/zh-tw/toolset/website-source-code/8326"  target="_blank" title="設計師創意求職履歷網頁模板">[前端模板] 設計師創意求職履歷網頁模板</a>
                                </div>
                            </li>
                                                <li>
                                <div class="wzrfourli">
                                    <span class="layui-badge-dots wzrflr"></span>
                                    <a href="https://www.php.cn/zh-tw/toolset/website-source-code/8325"  target="_blank" title="現代工程建築公司網站模板">[前端模板] 現代工程建築公司網站模板</a>
                                </div>
                            </li>
                                                <li>
                                <div class="wzrfourli">
                                    <span class="layui-badge-dots wzrflr"></span>
                                    <a href="https://www.php.cn/zh-tw/toolset/website-source-code/8324"  target="_blank" title="教育服務機構響應式HTML5模板">[前端模板] 教育服務機構響應式HTML5模板</a>
                                </div>
                            </li>
                                                <li>
                                <div class="wzrfourli">
                                    <span class="layui-badge-dots wzrflr"></span>
                                    <a href="https://www.php.cn/zh-tw/toolset/website-source-code/8323"  target="_blank" title="網上電子書店商城網站模板">[前端模板] 網上電子書店商城網站模板</a>
                                </div>
                            </li>
                                                <li>
                                <div class="wzrfourli">
                                    <span class="layui-badge-dots wzrflr"></span>
                                    <a href="https://www.php.cn/zh-tw/toolset/website-source-code/8322"  target="_blank" title="IT技術解決互聯網公司網站模板">[前端模板] IT技術解決互聯網公司網站模板</a>
                                </div>
                            </li>
                                                <li>
                                <div class="wzrfourli">
                                    <span class="layui-badge-dots wzrflr"></span>
                                    <a href="https://www.php.cn/zh-tw/toolset/website-source-code/8321"  target="_blank" title="紫色風格外匯交易服務網站模板">[前端模板] 紫色風格外匯交易服務網站模板</a>
                                </div>
                            </li>
                                        </ul>
                </div>
                <script>
                    var mySwiper = new Swiper('.swiper3', {
                                autoplay: false,//可选选项,自动滑动
                                slidesPerView : 'auto',
                            })
                    $('.wzrfourlTab>div').click(function(e){
                        $('.wzrfourlTab>div').removeClass('check')
                        $(this).addClass('check')
                        $('.wzrfourList>ul').css('display','none')
                        $('.'+e.currentTarget.dataset.id).show()
                    })
                </script>
            </div>
        </div>
    </div>
    <footer>
        <div class="footer">
            <div class="footertop">
                <img src="/static/imghw/logo.png" alt="">
                <p>公益線上PHP培訓,幫助PHP學習者快速成長!</p>
            </div>
            <div class="footermid">
                <a href="https://www.php.cn/zh-tw/about/us.html">關於我們</a>
                <a href="https://www.php.cn/zh-tw/about/disclaimer.html">免責聲明</a>
                <a href="https://www.php.cn/zh-tw/update/article_0_1.html">Sitemap</a>
            </div>
            <div class="footerbottom">
                <p>
                    © php.cn All rights reserved
                </p>
            </div>
        </div>
    </footer>
    
    <input type="hidden" id="verifycode" value="/captcha.html">
    <script>layui.use(['element', 'carousel'], function () {var element = layui.element;$ = layui.jquery;var carousel = layui.carousel;carousel.render({elem: '#test1', width: '100%', height: '330px', arrow: 'always'});$.getScript('/static/js/jquery.lazyload.min.js', function () {$("img").lazyload({placeholder: "/static/images/load.jpg", effect: "fadeIn", threshold: 200, skip_invisible: false});});});</script>
    
    <script src="/static/js/common_new.js"></script>
    <script type="text/javascript" src="/static/js/jquery.cookie.js?1738002765"></script>
    <script src="https://vdse.bdstatic.com//search-video.v1.min.js"></script>
    <link rel='stylesheet' id='_main-css' href='/static/css/viewer.min.css?2' type='text/css' media='all'/>
    <script type='text/javascript' src='/static/js/viewer.min.js?1'></script>
    <script type='text/javascript' src='/static/js/jquery-viewer.min.js'></script>
    <script type="text/javascript" src="/static/js/global.min.js?5.5.53"></script>
    
    
    <!-- Matomo -->
    <script>
      var _paq = window._paq = window._paq || [];
      /* tracker methods like "setCustomDimension" should be called before "trackPageView" */
      _paq.push(['trackPageView']);
      _paq.push(['enableLinkTracking']);
      (function() {
        var u="https://tongji.php.cn/";
        _paq.push(['setTrackerUrl', u+'matomo.php']);
        _paq.push(['setSiteId', '9']);
        var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];
        g.async=true; g.src=u+'matomo.js'; s.parentNode.insertBefore(g,s);
      })();
    </script>
    <!-- End Matomo Code -->
    </body>
    </html>