ホームページ > ウェブフロントエンド > htmlチュートリアル > 「Java Script DOM プログラミング術」読書メモ -- DOM_html/css_WEB-ITnose

「Java Script DOM プログラミング術」読書メモ -- DOM_html/css_WEB-ITnose

WBOY
リリース: 2016-06-21 08:51:41
オリジナル
1499 人が閲覧しました

1. DOM の「D」

「D」はドキュメント (ドキュメント)

2. : DOM の「O」

「O」はオブジェクト (オブジェクト) を表します オブジェクトの分類

  • ユーザー定義オブジェクト (ユーザー定義オブジェクト)
  • ネイティブオブジェクト
  • ホスト オブジェクト

window オブジェクト window オブジェクトはブラウザ ウィンドウ自体に対応し、通常、このオブジェクトのプロパティとメソッドを総称して BOM (Browse Object Model) と呼ばれます。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 のアトムは 要素ノード (要素ノード)

などの要素。タグの名前は要素の名前です。要素には他の要素を含めることもできます。他の要素に含まれない唯一の要素は、ノード ツリーのルート要素である 要素です。

4. 2 テキスト ノード

上の例では、

というテキストが含まれています。これは テキスト ノードです。 (テキストノード)。

4.3 属性ノード

属性ノードは、要素のより具体的な説明を提供します。たとえば、ほとんどすべての要素には title 属性があり、この属性を使用して要素に含まれる内容を正確に説明できます。

属性ノード
<p title="a gentle reminder">Don't forget to buy this stuff.<p>
ログイン後にコピー
、前の例では、順序なしリスト要素
    に id 属性があります。一部のリスト要素
  • には class 属性があります。

    3 つの関係.png

    4, 4 CSS

    JavaScript スクリプトと同様に、ドキュメントに CSS スタイルを埋め込むこともできます。 head> セクション (style> タグの間)。別のファイルに配置することもできます。 **HTML ファイル内で CSS ファイルを参照する形式:

    継承
    <link type="text/css" href="file.css" rel="stylesheet">
    ログイン後にコピー
    は、CSS テクノロジーの強力な機能です。 1) クラス属性

    は、上記のコード

    <p class="special">This pargraph has the special class<p><h2 class="special">So dose this headline</h2>
    ログイン後にコピー

    のスタイル シートで定義することも、次のように定義することもできます

    special{font-style: italic;}
    ログイン後にコピー

    2)、id 属性 id 属性の目的は、Web ページ内の要素に一意の識別子を追加することです:

    h2.special{text-transform: uppercase;}
    ログイン後にコピー

    スタイル シート定義

    <ul id="purchases">
    ログイン後にコピー

    4, 5 要素の取得
    #purchases{border:1px solid white;background-color:#333;color:#ccc;padding:1em;}
    ログイン後にコピー
    #purchases li{font-weight:bold;}
    ログイン後にコピー

    要素ノードを取得するには、要素 ID 経由、タグ名経由、クラス名経由の 3 つの DOM メソッドがあります。

    getElementById
    • getElementsByTagName
    • getElementsByClassName
    • 1)getElementById
    これメソッドは、指定された id 属性値を持つ要素ノードに対応するオブジェクトを返します。

    JavaScript の

    の場合に注意してください。これは、ドキュメント オブジェクトに固有の関数です。スクリプト コードでは、関数名の後に 1 対の括弧

    を続ける必要があります。この 1 対の括弧には、 関数のパラメーターが含まれます。 document.getElementById(id) の getElementById メソッドにはパラメーターが 1 つだけあります: 取得する要素の id 属性の値 この id 属性は一重引用符または二重引用符で囲む必要があります。 。この docment.getElementById("purchases") の呼び出しは、オブジェクトを返します。このオブジェクトは、ドキュメント オブジェクトの一意の要素に対応します。その要素の HTLM id 属性値は、purchase です。結果はオブジェクト

    2) getElementsByTagName
              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> getElementsByTagName メソッドはオブジェクトの配列を返します。各オブジェクトはドキュメント内の指定されたタグを持つ要素に対応します。そのパラメータはタグの名前です: device.getElementByTagName(tag)</p> <h3> </h3> <p>getElementsByTagName では、パラメータとしてワイルドカード文字を使用できます。ワイルドカード文字 (*) は引用符で囲む必要があります </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>3) getElementByClassName</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>このメソッドでは、クラス属性のクラス名を使用して要素にアクセスできます。これはクラス名である 1 つのパラメーターのみを受け入れます。 <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>このメソッドの戻り値も getElementsByTagName に似ており、同じクラス名を持つ要素の配列です。 </h3>   <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/ja/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/ja/faq/235368.html" title="ビューポート単位: vw、vh、vmin、vmax_html/css_WEB-ITnose">
                            <span>前の記事:ビューポート単位: vw、vh、vmin、vmax_html/css_WEB-ITnose</span>
                        </a>
                                        <a href="https://www.php.cn/ja/faq/235376.html"  title="Bootstrap の使用体験 text_html/css_WEB-ITnose">
                            <span>次の記事:Bootstrap の使用体験 text_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/ja/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/ja/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/ja/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/ja/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/ja/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/ja/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/ja/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/ja/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/ja/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/ja/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/ja/wenda/176411.html"  target="_blank" title="function_exists() はカスタム関数を決定できません" class="wdcdcTitle">function_exists() はカスタム関数を決定できません</a>
                                <a href="https://www.php.cn/ja/wenda/176411.html" class="wdcdcCons">Function test () {return true;} if (function_exists ('test')) {echo "テストは関数です";</a>
                                <div class="wdcdcInfo flexRow">
                                    <div class="wdcdcileft">
                                        <span class="wdcdciSpan"> から 2024-04-29 11:01:01</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>3</div>
                                        <div class="wdcdcirwatch flexRow ira"><b  class="wdcdcirwatchi"></b>2064</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/ja/wenda/176410.html"  target="_blank" title="Google Chromeのモバイル版を表示する方法" class="wdcdcTitle">Google Chromeのモバイル版を表示する方法</a>
                                <a href="https://www.php.cn/ja/wenda/176410.html" class="wdcdcCons">こんにちは、先生、Google Chrome をモバイル版に変更するにはどうすればよいですか?</a>
                                <div class="wdcdcInfo flexRow">
                                    <div class="wdcdcileft">
                                        <span class="wdcdciSpan"> から 2024-04-23 00:22:19</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>11</div>
                                        <div class="wdcdcirwatch flexRow ira"><b  class="wdcdcirwatchi"></b>2225</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/ja/wenda/176407.html"  target="_blank" title="子ウィンドウは親ウィンドウを操作しますが、出力は応答しません。" class="wdcdcTitle">子ウィンドウは親ウィンドウを操作しますが、出力は応答しません。</a>
                                <a href="https://www.php.cn/ja/wenda/176407.html" class="wdcdcCons">最初の 2 つの文は実行可能ですが、最後の文は実装できません。</a>
                                <div class="wdcdcInfo flexRow">
                                    <div class="wdcdcileft">
                                        <span class="wdcdciSpan"> から 2024-04-19 15:37:47</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>1</div>
                                        <div class="wdcdcirwatch flexRow ira"><b  class="wdcdcirwatchi"></b>1872</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/ja/wenda/176406.html"  target="_blank" title="親ウィンドウには出力がありません" class="wdcdcTitle">親ウィンドウには出力がありません</a>
                                <a href="https://www.php.cn/ja/wenda/176406.html" class="wdcdcCons">document.onclick = function(){ window.opener.document.write('私は子ウィンドウの出力です');</a>
                                <div class="wdcdcInfo flexRow">
                                    <div class="wdcdcileft">
                                        <span class="wdcdciSpan"> から 2024-04-18 23:52:34</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>1</div>
                                        <div class="wdcdcirwatch flexRow ira"><b  class="wdcdcirwatchi"></b>1753</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/ja/wenda/176405.html"  target="_blank" title="CSS マインド マッピングに関するコースウェアはどこにありますか?" class="wdcdcTitle">CSS マインド マッピングに関するコースウェアはどこにありますか?</a>
                                <a href="https://www.php.cn/ja/wenda/176405.html" class="wdcdcCons">コースウェア</a>
                                <div class="wdcdcInfo flexRow">
                                    <div class="wdcdcileft">
                                        <span class="wdcdciSpan"> から 2024-04-16 10:10:18</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>1785</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/ja/faq/zt" target="_blank">詳細>
                        </a>
                    </div>
                    <div class="wzcttlist">
                        <ul>
                                                    <li class="ul-li">
                                <a target="_blank" href="https://www.php.cn/ja/faq/wifimmzmpy"><img src="https://img.php.cn/upload/subject/202407/22/2024072211484613058.jpg?x-oss-process=image/resize,m_fill,h_145,w_220" alt="Wi-Fiパスワードを解読する方法" /> </a>
                                <a target="_blank" href="https://www.php.cn/ja/faq/wifimmzmpy" class="title-a-spanl" title="Wi-Fiパスワードを解読する方法"><span>Wi-Fiパスワードを解読する方法</span> </a>
                            </li>
                                                    <li class="ul-li">
                                <a target="_blank" href="https://www.php.cn/ja/faq/pythonzmdqexc"><img src="https://img.php.cn/upload/subject/202407/22/2024072212155997302.jpg?x-oss-process=image/resize,m_fill,h_145,w_220" alt="PythonでExcelファイルからデータを読み取る方法" /> </a>
                                <a target="_blank" href="https://www.php.cn/ja/faq/pythonzmdqexc" class="title-a-spanl" title="PythonでExcelファイルからデータを読み取る方法"><span>PythonでExcelファイルからデータを読み取る方法</span> </a>
                            </li>
                                                    <li class="ul-li">
                                <a target="_blank" href="https://www.php.cn/ja/faq/filesssmwj"><img src="https://img.php.cn/upload/subject/202407/22/2024072213345436147.jpg?x-oss-process=image/resize,m_fill,h_145,w_220" alt="ファイルとは何ですか" /> </a>
                                <a target="_blank" href="https://www.php.cn/ja/faq/filesssmwj" class="title-a-spanl" title="ファイルとは何ですか"><span>ファイルとは何ですか</span> </a>
                            </li>
                                                    <li class="ul-li">
                                <a target="_blank" href="https://www.php.cn/ja/faq/httpstatus"><img src="https://img.php.cn/upload/subject/202407/22/2024072213502949859.jpg?x-oss-process=image/resize,m_fill,h_145,w_220" alt="http ステータス 404 を解決する方法" /> </a>
                                <a target="_blank" href="https://www.php.cn/ja/faq/httpstatus" class="title-a-spanl" title="http ステータス 404 を解決する方法"><span>http ステータス 404 を解決する方法</span> </a>
                            </li>
                                                    <li class="ul-li">
                                <a target="_blank" href="https://www.php.cn/ja/faq/zjjdqdzy"><img src="https://img.php.cn/upload/subject/202407/22/2024072211495116276.jpg?x-oss-process=image/resize,m_fill,h_145,w_220" alt="中間リレーの機能" /> </a>
                                <a target="_blank" href="https://www.php.cn/ja/faq/zjjdqdzy" class="title-a-spanl" title="中間リレーの機能"><span>中間リレーの機能</span> </a>
                            </li>
                                                    <li class="ul-li">
                                <a target="_blank" href="https://www.php.cn/ja/faq/golanggolangd"><img src="https://img.php.cn/upload/subject/202407/22/2024072212291695976.jpg?x-oss-process=image/resize,m_fill,h_145,w_220" alt="golangとpythonの違いは何ですか" /> </a>
                                <a target="_blank" href="https://www.php.cn/ja/faq/golanggolangd" class="title-a-spanl" title="golangとpythonの違いは何ですか"><span>golangとpythonの違いは何ですか</span> </a>
                            </li>
                                                    <li class="ul-li">
                                <a target="_blank" href="https://www.php.cn/ja/faq/largehmaxqb"><img src="https://img.php.cn/upload/subject/202407/22/2024072213461815687.jpg?x-oss-process=image/resize,m_fill,h_145,w_220" alt="大規模関数と最大関数の違い" /> </a>
                                <a target="_blank" href="https://www.php.cn/ja/faq/largehmaxqb" class="title-a-spanl" title="大規模関数と最大関数の違い"><span>大規模関数と最大関数の違い</span> </a>
                            </li>
                                                    <li class="ul-li">
                                <a target="_blank" href="https://www.php.cn/ja/faq/smsbqfh"><img src="https://img.php.cn/upload/subject/202407/22/2024072212082960350.jpg?x-oss-process=image/resize,m_fill,h_145,w_220" alt="著作権マークとは何ですか" /> </a>
                                <a target="_blank" href="https://www.php.cn/ja/faq/smsbqfh" class="title-a-spanl" title="著作権マークとは何ですか"><span>著作権マークとは何ですか</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/ja/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/ja/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/ja/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/ja/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/ja/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/ja/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/ja/course/812.html" title="最新の ThinkPHP 5.1 ワールドプレミアビデオチュートリアル (PHP エキスパートになるための 60 日間のオンライン トレーニング コース)" class="wzrthreelaimg">
                                        <img src="https://img.php.cn/upload/course/000/000/041/620debc3eab3f377.jpg" alt="最新の ThinkPHP 5.1 ワールドプレミアビデオチュートリアル (PHP エキスパートになるための 60 日間のオンライン トレーニング コース)"/>
                                    </a>
                                    <div class="wzrthree-right">
                                        <a target="_blank" title="最新の ThinkPHP 5.1 ワールドプレミアビデオチュートリアル (PHP エキスパートになるための 60 日間のオンライン トレーニング コース)" href="https://www.php.cn/ja/course/812.html">最新の ThinkPHP 5.1 ワールドプレミアビデオチュートリアル (PHP エキスパートになるための 60 日間のオンライン トレーニング コース)</a>
                                        <div class="wzrthreerb">
                                            <div>1421602 <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/ja/course/74.html" title="PHP 入門チュートリアル 1: 1 週間で PHP を学ぶ" class="wzrthreelaimg">
                                        <img src="https://img.php.cn/upload/course/000/000/068/6253d1e28ef5c345.png" alt="PHP 入門チュートリアル 1: 1 週間で PHP を学ぶ"/>
                                    </a>
                                    <div class="wzrthree-right">
                                        <a target="_blank" title="PHP 入門チュートリアル 1: 1 週間で PHP を学ぶ" href="https://www.php.cn/ja/course/74.html">PHP 入門チュートリアル 1: 1 週間で PHP を学ぶ</a>
                                        <div class="wzrthreerb">
                                            <div>4265846 <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/ja/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/ja/course/286.html">JAVA 初心者向けビデオチュートリアル</a>
                                        <div class="wzrthreerb">
                                            <div>2518120 <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/ja/course/504.html" title="Little Turtle のゼロベースの Python 学習入門ビデオ チュートリアル" class="wzrthreelaimg">
                                        <img src="https://img.php.cn/upload/course/000/000/068/62590a67ce3a6655.png" alt="Little Turtle のゼロベースの Python 学習入門ビデオ チュートリアル"/>
                                    </a>
                                    <div class="wzrthree-right">
                                        <a target="_blank" title="Little Turtle のゼロベースの Python 学習入門ビデオ チュートリアル" href="https://www.php.cn/ja/course/504.html">Little Turtle のゼロベースの Python 学習入門ビデオ チュートリアル</a>
                                        <div class="wzrthreerb">
                                            <div>506459 <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/ja/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/ja/course/2.html">PHP ゼロベースの入門チュートリアル</a>
                                        <div class="wzrthreerb">
                                            <div>861543 <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/ja/course/812.html" title="最新の ThinkPHP 5.1 ワールドプレミアビデオチュートリアル (PHP エキスパートになるための 60 日間のオンライン トレーニング コース)" class="wzrthreelaimg">
                                    <img src="https://img.php.cn/upload/course/000/000/041/620debc3eab3f377.jpg" alt="最新の ThinkPHP 5.1 ワールドプレミアビデオチュートリアル (PHP エキスパートになるための 60 日間のオンライン トレーニング コース)"/>
                                </a>
                                <div class="wzrthree-right">
                                    <a target="_blank" title="最新の ThinkPHP 5.1 ワールドプレミアビデオチュートリアル (PHP エキスパートになるための 60 日間のオンライン トレーニング コース)" href="https://www.php.cn/ja/course/812.html">最新の ThinkPHP 5.1 ワールドプレミアビデオチュートリアル (PHP エキスパートになるための 60 日間のオンライン トレーニング コース)</a>
                                    <div class="wzrthreerb">
                                        <div >1421602 回の学習</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/ja/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/ja/course/286.html">JAVA 初心者向けビデオチュートリアル</a>
                                    <div class="wzrthreerb">
                                        <div >2518120 回の学習</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/ja/course/504.html" title="Little Turtle のゼロベースの Python 学習入門ビデオ チュートリアル" class="wzrthreelaimg">
                                    <img src="https://img.php.cn/upload/course/000/000/068/62590a67ce3a6655.png" alt="Little Turtle のゼロベースの Python 学習入門ビデオ チュートリアル"/>
                                </a>
                                <div class="wzrthree-right">
                                    <a target="_blank" title="Little Turtle のゼロベースの Python 学習入門ビデオ チュートリアル" href="https://www.php.cn/ja/course/504.html">Little Turtle のゼロベースの Python 学習入門ビデオ チュートリアル</a>
                                    <div class="wzrthreerb">
                                        <div >506459 回の学習</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/ja/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/ja/course/901.html">Web フロントエンド開発の簡単な紹介</a>
                                    <div class="wzrthreerb">
                                        <div >215642 回の学習</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/ja/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/ja/course/234.html">PSビデオチュートリアルをゼロからマスターする</a>
                                    <div class="wzrthreerb">
                                        <div >886693 回の学習</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/ja/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/ja/course/1648.html">[Web フロントエンド] Node.js クイック スタート</a>
                                    <div class="wzrthreerb">
                                        <div >7249 回の学習</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/ja/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/ja/course/1647.html">海外のWeb開発フルスタックコースの完全なコレクション</a>
                                    <div class="wzrthreerb">
                                        <div >5637 回の学習</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/ja/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/ja/course/1646.html">Go言語実践GraphQL</a>
                                    <div class="wzrthreerb">
                                        <div >4745 回の学習</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/ja/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/ja/course/1645.html">550W ファンマスターが JavaScript をゼロから段階的に学習します</a>
                                    <div class="wzrthreerb">
                                        <div >675 回の学習</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/ja/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/ja/course/1644.html">Python マスター Mosh、基礎知識ゼロの初心者でも 6 時間で始められる</a>
                                    <div class="wzrthreerb">
                                        <div >23955 回の学習</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/ja/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/ja/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/ja/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/ja/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/ja/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 模倣 Kugou 音楽プレーヤー コード" href="https://www.php.cn/ja/toolset/js-special-effects/8067">[プレイヤーの特殊効果] VUE.JS 模倣 Kugou 音楽プレーヤー コード</a>
                                </div>
                            </li>
                                                <li>
                                <div class="wzrfourli">
                                    <span class="layui-badge-dots wzrflr"></span>
                                    <a target="_blank"  title="古典的な HTML5 プッシュ ボックス ゲーム" href="https://www.php.cn/ja/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/ja/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/ja/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/ja/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/ja/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/ja/toolset/website-source-code/8326" title="デザイナーのクリエイティブな仕事の履歴書 Web テンプレート" target="_blank">[フロントエンドテンプレート] デザイナーのクリエイティブな仕事の履歴書 Web テンプレート</a>
                                </div>
                            </li>
                                                <li>
                                <div class="wzrfourli">
                                    <span class="layui-badge-dots wzrflr"></span>
                                    <a href="https://www.php.cn/ja/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/ja/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/ja/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/ja/toolset/website-source-code/8322" title="IT テクノロジーがインターネット企業の Web サイト テンプレートを解決します" target="_blank">[フロントエンドテンプレート] IT テクノロジーがインターネット企業の Web サイト テンプレートを解決します</a>
                                </div>
                            </li>
                                                <li>
                                <div class="wzrfourli">
                                    <span class="layui-badge-dots wzrflr"></span>
                                    <a href="https://www.php.cn/ja/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/ja/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/ja/toolset/website-materials/3077"  target="_blank"  title="4 つの赤い 2023 卒業バッジ ベクター素材 (AI+EPS+PNG)">[PNG素材] 4 つの赤い 2023 卒業バッジ ベクター素材 (AI+EPS+PNG)</a>
                                </div>
                            </li>
                                                <li>
                                <div class="wzrfourli">
                                    <span class="layui-badge-dots wzrflr"></span>
                                    <a href="https://www.php.cn/ja/toolset/website-materials/3076"  target="_blank"  title="歌う鳥と花がいっぱいのカートデザイン春のバナーベクター素材(AI+EPS)">[バナー画像] 歌う鳥と花がいっぱいのカートデザイン春のバナーベクター素材(AI+EPS)</a>
                                </div>
                            </li>
                                                <li>
                                <div class="wzrfourli">
                                    <span class="layui-badge-dots wzrflr"></span>
                                    <a href="https://www.php.cn/ja/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/ja/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/ja/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/ja/toolset/website-materials/3072"  target="_blank"  title="フラット スタイルの植樹祭バナー ベクター素材 (AI+EPS)">[バナー画像] フラット スタイルの植樹祭バナー ベクター素材 (AI+EPS)</a>
                                </div>
                            </li>
                                                <li>
                                <div class="wzrfourli">
                                    <span class="layui-badge-dots wzrflr"></span>
                                    <a href="https://www.php.cn/ja/toolset/website-materials/3071"  target="_blank"  title="9つのコミックスタイルの爆発するチャットバブルベクター素材(EPS+PNG)">[PNG素材] 9つのコミックスタイルの爆発するチャットバブルベクター素材(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/ja/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/ja/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/ja/toolset/website-source-code/8326"  target="_blank" title="デザイナーのクリエイティブな仕事の履歴書 Web テンプレート">[フロントエンドテンプレート] デザイナーのクリエイティブな仕事の履歴書 Web テンプレート</a>
                                </div>
                            </li>
                                                <li>
                                <div class="wzrfourli">
                                    <span class="layui-badge-dots wzrflr"></span>
                                    <a href="https://www.php.cn/ja/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/ja/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/ja/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/ja/toolset/website-source-code/8322"  target="_blank" title="IT テクノロジーがインターネット企業の Web サイト テンプレートを解決します">[フロントエンドテンプレート] IT テクノロジーがインターネット企業の Web サイト テンプレートを解決します</a>
                                </div>
                            </li>
                                                <li>
                                <div class="wzrfourli">
                                    <span class="layui-badge-dots wzrflr"></span>
                                    <a href="https://www.php.cn/ja/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/ja/about/us.html">私たちについて</a>
                <a href="https://www.php.cn/ja/about/disclaimer.html">免責事項</a>
                <a href="https://www.php.cn/ja/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?1733186333"></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>
    </body>
    </html>