<mark id="p0luq"><div id="p0luq"><style id="p0luq"></style></div></mark><big id="p0luq"></big>
    <mark id="p0luq"><dl id="p0luq"></dl></mark>
  • \n

    \n\n\n\n

    The DOM represents it as:
    \n<\/p>\n\n

    - Document\n  - html\n    - head\n      - title\n    - body\n      - h1\n      - p\n<\/pre>\n\n\n\n\n
    \n\n

    \n \n \n 訪問 DOM<\/strong>\n<\/h3>\n\n

    JavaScript 提供了選擇和操作 DOM 元素的方法。 <\/p>\n\n

    \n \n \n 常見的選擇方法<\/strong>\n<\/h4>\n\n
      \n
    1. \ngetElementById<\/strong>\n通過 ID 選擇元素。\n<\/li>\n<\/ol>\n\n
         const title = document.getElementById(\"title\");\n   console.log(title.innerText); \/\/ Output: Hello, DOM!\n<\/pre>\n\n\n\n
        \n
      1. \ngetElementsByClassName<\/strong>\n按類名選擇元素(返回集合)。\n<\/li>\n<\/ol>\n\n
           const paragraphs = document.getElementsByClassName(\"description\");\n   console.log(paragraphs[0].innerText);\n<\/pre>\n\n\n\n
          \n
        1. \ngetElementsByTagName<\/strong>\n按標(biāo)簽名稱選擇元素(例如 div、p)。\n<\/li>\n<\/ol>\n\n
             const headings = document.getElementsByTagName(\"h1\");\n   console.log(headings[0].innerText);\n<\/pre>\n\n\n\n
            \n
          1. \n查詢選擇器<\/strong>\n選擇與 CSS 選擇器匹配的第一個(gè)元素。\n<\/li>\n<\/ol>\n\n
               const title = document.querySelector(\"#title\");\n<\/pre>\n\n\n\n
              \n
            1. \nquerySelectorAll<\/strong>\n選擇與 CSS 選擇器匹配的所有元素(返回 NodeList)。\n<\/li>\n<\/ol>\n\n
                 const paragraphs = document.querySelectorAll(\".description\");\n<\/pre>\n\n\n\n\n
              \n\n

              \n \n \n DOM 操作<\/strong>\n<\/h3>\n\n

              選擇后,您可以動(dòng)態(tài)修改元素、屬性和內(nèi)容。<\/p>\n\n

              \n \n \n 1.更改內(nèi)容<\/strong>\n<\/h4>\n\n<\/pre>\n
                \n
              • \ninnerHTML<\/strong>:設(shè)置或獲取 HTML 內(nèi)容。\n<\/li>\n<\/ul>\n\n
                  document.getElementById(\"title\").innerHTML = \"Welcome to the DOM!\";\n<\/pre>\n\n\n\n
                  \n
                • \ninnerText<\/strong> 或 textContent<\/strong>:設(shè)置或獲取純文本。\n<\/li>\n<\/ul>\n\n
                    document.getElementById(\"title\").innerText = \"Hello, World!\";\n<\/pre>\n\n\n\n

                  \n \n \n 2.更改屬性<\/strong>\n<\/h4>\n\n
                    \n
                  • 使用setAttribute和getAttribute修改元素屬性。\n<\/li>\n<\/ul>\n\n
                      const link = document.querySelector(\"a\");\n  link.setAttribute(\"href\", \"https:\/\/example.com\");\n<\/pre>\n\n\n\n
                      \n
                    • 直接修改 id、className 或 src 等屬性。\n<\/li>\n<\/ul>\n\n
                        const image = document.querySelector(\"img\");\n  image.src = \"image.jpg\";\n<\/pre>\n\n\n\n

                      \n \n \n 3.改變風(fēng)格<\/strong>\n<\/h4>\n\n

                      直接修改 CSS 屬性。
                      \n<\/p>\n

                      \n\n  \n    DOM Example<\/title>\n  <\/head>\n  <body>
                      <h1><a href="http://www.miracleart.cn/">国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂</a></h1>\n    <h1>\n\n\n\n<p>The DOM represents it as:<br>\n<\/p>\n\n<pre>- Document\n  - html\n    - head\n      - title\n    - body\n      - h1\n      - p\n<\/pre>\n\n\n\n\n<hr>\n\n<h3>\n  \n  \n  <strong>添加和刪除元素<\/strong>\n<\/h3>\n\n<h4>\n  \n  \n  <strong>1.添加元素<\/strong>\n<\/h4>\n\n<\/pre>\n<ul>\n<li>\n<strong>createElement<\/strong>:創(chuàng)建一個(gè)新元素。\n<\/li>\n<li>\n<strong>appendChild<\/strong>:將元素追加到父元素。\n<\/li>\n<\/ul>\n\n<pre>   const title = document.getElementById(\"title\");\n   console.log(title.innerText); \/\/ Output: Hello, DOM!\n<\/pre>\n\n\n\n<h4>\n  \n  \n  <strong>2.刪除元素<\/strong>\n<\/h4>\n\n<ul>\n<li>\n<strong>removeChild<\/strong>:刪除子元素。\n<\/li>\n<\/ul>\n\n<pre>   const paragraphs = document.getElementsByClassName(\"description\");\n   console.log(paragraphs[0].innerText);\n<\/pre>\n\n\n\n\n<hr>\n\n<h3>\n  \n  \n  <strong>DOM 中的事件處理<\/strong>\n<\/h3>\n\n<p>事件是瀏覽器檢測(cè)到的操作或事件,例如單擊或按鍵。  <\/p>\n\n<h4>\n  \n  \n  <strong>添加事件監(jiān)聽器<\/strong>\n<\/h4>\n\n<p>使用 addEventListener 將事件綁定到元素。<br>\n<\/p>\n\n<pre>   const headings = document.getElementsByTagName(\"h1\");\n   console.log(headings[0].innerText);\n<\/pre>\n\n\n\n<h4>\n  \n  \n  <strong>常見事件<\/strong>\n<\/h4>\n\n<ol>\n<li>\n<strong>鼠標(biāo)事件<\/strong>:?jiǎn)螕?、雙擊、鼠標(biāo)懸停、鼠標(biāo)移出\n<\/li>\n<li>\n<strong>鍵盤事件<\/strong>:keydown、keyup\n<\/li>\n<li>\n<strong>表單事件<\/strong>:提交、更改、聚焦\n<\/li>\n<\/ol>\n\n\n<hr>\n\n<h3>\n  \n  \n  <strong>遍歷 DOM<\/strong>\n<\/h3>\n\n<p>您可以使用 DOM 樹中的關(guān)系在元素之間導(dǎo)航。<\/p>\n\n<h4>\n  \n  \n  <strong>家長(zhǎng)和孩子<\/strong>\n<\/h4>\n\n<ul>\n<li>\n<strong>parentNode<\/strong>:獲取父節(jié)點(diǎn)。\n<\/li>\n<li>\n<strong>childNodes<\/strong>:列出所有子節(jié)點(diǎn)。\n<\/li>\n<li>\n<strong>children<\/strong>:列出所有子元素。\n<\/li>\n<\/ul>\n\n<pre>   const title = document.querySelector(\"#title\");\n<\/pre>\n\n\n\n<h4>\n  \n  \n  <strong>兄弟姐妹<\/strong>\n<\/h4>\n\n<ul>\n<li>\n<strong>nextSibling<\/strong>:獲取下一個(gè)兄弟節(jié)點(diǎn)。\n<\/li>\n<li>\n<strong>previousSibling<\/strong>:獲取上一個(gè)兄弟節(jié)點(diǎn)。\n<\/li>\n<\/ul>\n\n\n<hr>\n\n<h3>\n  \n  \n  <strong>高級(jí) DOM 功能<\/strong>\n<\/h3>\n\n<h4>\n  \n  \n  <strong>1.克隆元素<\/strong>\n<\/h4>\n\n<p>使用cloneNode創(chuàng)建元素的副本。<br>\n<\/p>\n\n<pre>   const paragraphs = document.querySelectorAll(\".description\");\n<\/pre>\n\n\n\n<h4>\n  \n  \n  <strong>2.使用類<\/strong>\n<\/h4>\n\n<p>使用 classList 屬性來操作類。<br>\n<\/p>\n\n<pre>  document.getElementById(\"title\").innerHTML = \"Welcome to the DOM!\";\n<\/pre>\n\n\n\n<h4>\n  \n  \n  <strong>3.使用模板<\/strong>\n<\/h4>\n\n<p>HTML 模板允許重復(fù)使用內(nèi)容。<br>\n<\/p>\n\n<pre>  document.getElementById(\"title\").innerText = \"Hello, World!\";\n<\/pre>\n\n\n\n\n<hr>\n\n<h3>\n  \n  \n  <strong>DOM 操作的最佳實(shí)踐<\/strong>\n<\/h3>\n\n<ol>\n<li>\n<p><strong>最小化回流和重繪<\/strong>:<\/p>\n\n<ul>\n<li>批量 DOM 更改以避免過度渲染。\n<\/li>\n<li>使用 documentFragment 進(jìn)行多次更新。\n<\/li>\n<\/ul>\n<\/li>\n<li><p><strong>使用事件委托<\/strong>:<br><br>\n將事件附加到父元素而不是單個(gè)子元素。<br>\n<\/p><\/li>\n<\/ol>\n\n<pre><!DOCTYPE html>\n<html>\n  <head>\n    <title>DOM Example<\/title>\n  <\/head>\n  <body>\n    <h1>\n\n\n\n<p>The DOM represents it as:<br>\n<\/p>\n\n<pre>- Document\n  - html\n    - head\n      - title\n    - body\n      - h1\n      - p\n<\/pre>\n\n\n\n<ol>\n<li>\n<strong>避免內(nèi)聯(lián) JavaScript<\/strong>:\n使用外部腳本或 addEventListener 來干凈地分離代碼。<\/li>\n<\/ol>\n\n\n<hr>\n\n<h3>\n  \n  \n  <strong>結(jié)論<\/strong>\n<\/h3>\n\n<p>JavaScript HTML DOM 是創(chuàng)建動(dòng)態(tài)和交互式網(wǎng)頁(yè)的強(qiáng)大工具。通過掌握 DOM 操作、事件處理和最佳實(shí)踐,開發(fā)人員可以構(gòu)建響應(yīng)迅速且用戶友好的應(yīng)用程序,從而增強(qiáng)整體用戶體驗(yàn)。<\/p>\n\n<p><strong>嗨,我是 Abhay Singh Kathayat!<\/strong><br>\n我是一名全棧開發(fā)人員,精通前端和后端技術(shù)。我使用各種編程語(yǔ)言和框架來構(gòu)建高效、可擴(kuò)展且用戶友好的應(yīng)用程序。<br>\n請(qǐng)隨時(shí)通過我的商務(wù)電子郵件與我聯(lián)系:kaashshorts28@gmail.com。<\/p>\n\n\n          \n\n            \n        <\/pre>"}	</script>
                      	
                      <meta http-equiv="Cache-Control" content="no-transform" />
                      <meta http-equiv="Cache-Control" content="no-siteapp" />
                      <script>var V_PATH="/";window.onerror=function(){ return true; };</script>
                      </head>
                      
                      <body data-commit-time="2023-12-28T14:50:12+08:00" class="editor_body body2_2">
                      	<link rel="stylesheet" type="text/css" href="/static/csshw/stylehw.css">
                      <header>
                          <div   id="377j5v51b"   class="head">
                              <div   id="377j5v51b"   class="haed_left">
                                  <div   id="377j5v51b"   class="haed_logo">
                                      <a href="http://www.miracleart.cn/zh/" title="" class="haed_logo_a">
                                          <img src="/static/imghw/logo.png" alt="" class="haed_logoimg">
                                      </a>
                                  </div>
                                  <div   id="377j5v51b"   class="head_nav">
                                      <div   id="377j5v51b"   class="head_navs">
                                          <a href="javascript:;" title="社區(qū)" class="head_nava head_nava-template1">社區(qū)</a>
                                          <div   class="377j5v51b"   id="dropdown-template1" style="display: none;">
                                              <div   id="377j5v51b"   class="languagechoose">
                                                  <a href="http://www.miracleart.cn/zh/article.html" title="文章" class="languagechoosea on">文章</a>
                                                  <a href="http://www.miracleart.cn/zh/faq/zt" title="合集" class="languagechoosea">合集</a>
                                                  <a href="http://www.miracleart.cn/zh/wenda.html" title="問答" class="languagechoosea">問答</a>
                                              </div>
                                          </div>
                                      </div>
                      
                                      <div   id="377j5v51b"   class="head_navs">
                                          <a href="javascript:;" title="學(xué)習(xí)" class="head_nava head_nava-template1_1">學(xué)習(xí)</a>
                                          <div   class="377j5v51b"   id="dropdown-template1_1" style="display: none;">
                                              <div   id="377j5v51b"   class="languagechoose">
                                                  <a href="http://www.miracleart.cn/zh/course.html" title="課程" class="languagechoosea on">課程</a>
                                                  <a href="http://www.miracleart.cn/zh/dic/" title="編程詞典" class="languagechoosea">編程詞典</a>
                                              </div>
                                          </div>
                                      </div>
                      
                                      <div   id="377j5v51b"   class="head_navs">
                                          <a href="javascript:;" title="工具庫(kù)" class="head_nava head_nava-template1_2">工具庫(kù)</a>
                                          <div   class="377j5v51b"   id="dropdown-template1_2" style="display: none;">
                                              <div   id="377j5v51b"   class="languagechoose">
                                                  <a href="http://www.miracleart.cn/zh/toolset/development-tools" title="開發(fā)工具" class="languagechoosea on">開發(fā)工具</a>
                                                  <a href="http://www.miracleart.cn/zh/toolset/website-source-code" title="網(wǎng)站源碼" class="languagechoosea">網(wǎng)站源碼</a>
                                                  <a href="http://www.miracleart.cn/zh/toolset/php-libraries" title="PHP 庫(kù)" class="languagechoosea">PHP 庫(kù)</a>
                                                  <a href="http://www.miracleart.cn/zh/toolset/js-special-effects" title="JS特效" class="languagechoosea on">JS特效</a>
                                                  <a href="http://www.miracleart.cn/zh/toolset/website-materials" title="網(wǎng)站素材" class="languagechoosea on">網(wǎng)站素材</a>
                                                  <a href="http://www.miracleart.cn/zh/toolset/extension-plug-ins" title="擴(kuò)展插件" class="languagechoosea on">擴(kuò)展插件</a>
                                              </div>
                                          </div>
                                      </div>
                      
                                      <div   id="377j5v51b"   class="head_navs">
                                          <a href="http://www.miracleart.cn/zh/ai" title="AI工具" class="head_nava head_nava-template1_3">AI工具</a>
                                      </div>
                      
                                      <div   id="377j5v51b"   class="head_navs">
                                          <a href="javascript:;" title="休閑" class="head_nava head_nava-template1_3">休閑</a>
                                          <div   class="377j5v51b"   id="dropdown-template1_3" style="display: none;">
                                              <div   id="377j5v51b"   class="languagechoose">
                                                  <a href="http://www.miracleart.cn/zh/game" title="游戲下載" class="languagechoosea on">游戲下載</a>
                                                  <a href="http://www.miracleart.cn/zh/mobile-game-tutorial/" title="游戲教程" class="languagechoosea">游戲教程</a>
                      
                                              </div>
                                          </div>
                                      </div>
                                  </div>
                              </div>
                                          <div   id="377j5v51b"   class="head_search">
                                      <input id="key_words"  onkeydown="if (event.keyCode == 13) searchs('zh')" class="search-input" type="text" autocomplete="off" name="keywords" required="required" placeholder="Block,address,transaction,news" value="">
                                      <a href="javascript:;" title="搜索"  onclick="searchs('zh')"><img src="/static/imghw/find.png" alt="搜索"></a>
                                  </div>
                                      <div   id="377j5v51b"   class="head_right">
                                  <div   id="377j5v51b"   class="haed_language">
                                      <a href="javascript:;" class="layui-btn haed_language_btn">簡(jiǎn)體中文<i class="layui-icon layui-icon-triangle-d"></i></a>
                                      <div   class="377j5v51b"   id="dropdown-template" style="display: none;">
                                          <div   id="377j5v51b"   class="languagechoose">
                                                                      <a href="javascript:;" title="簡(jiǎn)體中文" class="languagechoosea">簡(jiǎn)體中文</a>
                                                                      <a href="javascript:setlang('en');" title="English" class="languagechoosea">English</a>
                                                                      <a href="javascript:setlang('zh-tw');" title="繁體中文" class="languagechoosea">繁體中文</a>
                                                                      <a href="javascript:setlang('ja');" title="日本語(yǔ)" class="languagechoosea">日本語(yǔ)</a>
                                                                      <a href="javascript:setlang('ko');" title="???" class="languagechoosea">???</a>
                                                                      <a href="javascript:setlang('ms');" title="Melayu" class="languagechoosea">Melayu</a>
                                                                      <a href="javascript:setlang('fr');" title="Fran?ais" class="languagechoosea">Fran?ais</a>
                                                                      <a href="javascript:setlang('de');" title="Deutsch" class="languagechoosea">Deutsch</a>
                                                                  </div>
                                      </div>
                                  </div>
                                  <span id="377j5v51b"    class="head_right_line"></span>
                                                  <div style="display: block;" id="login" class="haed_login ">
                                          <a href="javascript:;"  title="Login" class="haed_logina ">Login</a>
                                      </div>
                                      <div style="display: block;" id="reg" class="head_signup login">
                                          <a href="javascript:;"  title="singup" class="head_signupa">singup</a>
                                      </div>
                                  
                              </div>
                          </div>
                      </header>
                      
                      	
                      	<main>
                      		<div   id="377j5v51b"   class="Article_Details_main">
                      			<div   id="377j5v51b"   class="Article_Details_main1">
                      							<div   id="377j5v51b"   class="Article_Details_main1M">
                      					<div   id="377j5v51b"   class="phpgenera_Details_mainL1">
                      						<a href="http://www.miracleart.cn/zh/" title="首頁(yè)"
                      							class="phpgenera_Details_mainL1a">首頁(yè)</a>
                      						<img src="/static/imghw/top_right.png" alt="" />
                      												<a href="http://www.miracleart.cn/zh/web-designer.html"
                      							class="phpgenera_Details_mainL1a">web前端</a>
                      						<img src="/static/imghw/top_right.png" alt="" />
                      												<a href="http://www.miracleart.cn/zh/js-tutorial.html"
                      							class="phpgenera_Details_mainL1a">js教程</a>
                      						<img src="/static/imghw/top_right.png" alt="" />
                      						<span>掌握 JavaScript HTML DOM:構(gòu)建動(dòng)態(tài)和交互式網(wǎng)頁(yè)</span>
                      					</div>
                      					
                      					<div   id="377j5v51b"   class="Articlelist_txts">
                      						<div   id="377j5v51b"   class="Articlelist_txts_info">
                      							<h1 class="Articlelist_txts_title">掌握 JavaScript HTML DOM:構(gòu)建動(dòng)態(tài)和交互式網(wǎng)頁(yè)</h1>
                      							<div   id="377j5v51b"   class="Articlelist_txts_info_head">
                      								<div   id="377j5v51b"   class="author_info">
                      									<a href="http://www.miracleart.cn/zh/member/1468492.html"  class="author_avatar">
                      									<img class="lazy"  data-src="https://img.php.cn/upload/avatar/000/000/001/66ea8147b1057383.png" src="/static/imghw/default1.png" alt="Mary-Kate Olsen">
                      									</a>
                      									<div   id="377j5v51b"   class="author_detail">
                      																			<a href="http://www.miracleart.cn/zh/member/1468492.html" class="author_name">Mary-Kate Olsen</a>
                                                      										</div>
                      								</div>
                                      			</div>
                      							<span id="377j5v51b"    class="Articlelist_txts_time">Dec 20, 2024 am	 02:57 AM</span>
                      														
                      						</div>
                      					</div>
                      					<hr />
                      					<div   id="377j5v51b"   class="article_main php-article">
                      						<div   id="377j5v51b"   class="article-list-left detail-content-wrap content">
                      						<ins class="adsbygoogle"
                      							style="display:block; text-align:center;"
                      							data-ad-layout="in-article"
                      							data-ad-format="fluid"
                      							data-ad-client="ca-pub-5902227090019525"
                      							data-ad-slot="3461856641">
                      						</ins>
                      						
                      
                      					<p><img src="/static/imghw/default1.png" data-src="https://img.php.cn/upload/article/000/000/000/173463463582725.jpg" class="lazy" alt="Mastering the JavaScript HTML DOM: Building Dynamic and Interactive Webpages"></p>
                      <h3>
                        
                        
                        <strong>JavaScript HTML DOM:完整指南</strong>
                      </h3>
                      
                      <p><strong>文檔對(duì)象模型 (DOM)</strong> 是 Web 文檔的編程接口。它將網(wǎng)頁(yè)的結(jié)構(gòu)表示為對(duì)象樹,使開發(fā)人員能夠使用 JavaScript 操作 HTML 和 CSS。通過掌握 DOM,您可以創(chuàng)建動(dòng)態(tài)的交互式網(wǎng)頁(yè)。</p>
                      
                      
                      <hr>
                      
                      <h3>
                        
                        
                        <strong>什么是 DOM?</strong>
                      </h3>
                      
                      <p>DOM 是 HTML 文檔的結(jié)構(gòu)化表示。它允許 JavaScript 動(dòng)態(tài)訪問和操作網(wǎng)頁(yè)的元素、屬性和內(nèi)容。  </p>
                      
                      <h4>
                        
                        
                        例子:
                      </h4>
                      
                      <p>對(duì)于此 HTML:<br>
                      </p>
                      
                      <pre class="brush:php;toolbar:false"><!DOCTYPE html>
                      <html>
                        <head>
                          <title>DOM Example</title>
                        </head>
                        <body>
                          <h1>
                      
                      
                      
                      <p>The DOM represents it as:<br>
                      </p>
                      
                      <pre class="brush:php;toolbar:false">- Document
                        - html
                          - head
                            - title
                          - body
                            - h1
                            - p
                      </pre>
                      
                      
                      
                      
                      <hr>
                      
                      <h3>
                        
                        
                        <strong>訪問 DOM</strong>
                      </h3>
                      
                      <p>JavaScript 提供了選擇和操作 DOM 元素的方法。  </p>
                      
                      <h4>
                        
                        
                        <strong>常見的選擇方法</strong>
                      </h4>
                      
                      <ol>
                      <li>
                      <strong>getElementById</strong>
                      通過 ID 選擇元素。
                      </li>
                      </ol>
                      
                      <pre class="brush:php;toolbar:false">   const title = document.getElementById("title");
                         console.log(title.innerText); // Output: Hello, DOM!
                      </pre>
                      
                      
                      
                      <ol>
                      <li>
                      <strong>getElementsByClassName</strong>
                      按類名選擇元素(返回集合)。
                      </li>
                      </ol>
                      
                      <pre class="brush:php;toolbar:false">   const paragraphs = document.getElementsByClassName("description");
                         console.log(paragraphs[0].innerText);
                      </pre>
                      
                      
                      
                      <ol>
                      <li>
                      <strong>getElementsByTagName</strong>
                      按標(biāo)簽名稱選擇元素(例如 div、p)。
                      </li>
                      </ol>
                      
                      <pre class="brush:php;toolbar:false">   const headings = document.getElementsByTagName("h1");
                         console.log(headings[0].innerText);
                      </pre>
                      
                      
                      
                      <ol>
                      <li>
                      <strong>查詢選擇器</strong>
                      選擇與 CSS 選擇器匹配的第一個(gè)元素。
                      </li>
                      </ol>
                      
                      <pre class="brush:php;toolbar:false">   const title = document.querySelector("#title");
                      </pre>
                      
                      
                      
                      <ol>
                      <li>
                      <strong>querySelectorAll</strong>
                      選擇與 CSS 選擇器匹配的所有元素(返回 NodeList)。
                      </li>
                      </ol>
                      
                      <pre class="brush:php;toolbar:false">   const paragraphs = document.querySelectorAll(".description");
                      </pre>
                      
                      
                      
                      
                      <hr>
                      
                      <h3>
                        
                        
                        <strong>DOM 操作</strong>
                      </h3>
                      
                      <p>選擇后,您可以動(dòng)態(tài)修改元素、屬性和內(nèi)容。</p>
                      
                      <h4>
                        
                        
                        <strong>1.更改內(nèi)容</strong>
                      </h4>
                      
                      </pre>
                      <ul>
                      <li>
                      <strong>innerHTML</strong>:設(shè)置或獲取 HTML 內(nèi)容。
                      </li>
                      </ul>
                      
                      <pre class="brush:php;toolbar:false">  document.getElementById("title").innerHTML = "Welcome to the DOM!";
                      </pre>
                      
                      
                      
                      <ul>
                      <li>
                      <strong>innerText</strong> 或 <strong>textContent</strong>:設(shè)置或獲取純文本。
                      </li>
                      </ul>
                      
                      <pre class="brush:php;toolbar:false">  document.getElementById("title").innerText = "Hello, World!";
                      </pre>
                      
                      
                      
                      <h4>
                        
                        
                        <strong>2.更改屬性</strong>
                      </h4>
                      
                      <ul>
                      <li>使用setAttribute和getAttribute修改元素屬性。
                      </li>
                      </ul>
                      
                      <pre class="brush:php;toolbar:false">  const link = document.querySelector("a");
                        link.setAttribute("href", "https://example.com");
                      </pre>
                      
                      
                      
                      <ul>
                      <li>直接修改 id、className 或 src 等屬性。
                      </li>
                      </ul>
                      
                      <pre class="brush:php;toolbar:false">  const image = document.querySelector("img");
                        image.src = "image.jpg";
                      </pre>
                      
                      
                      
                      <h4>
                        
                        
                        <strong>3.改變風(fēng)格</strong>
                      </h4>
                      
                      <p>直接修改 CSS 屬性。<br>
                      </p>
                      <pre class="brush:php;toolbar:false"><!DOCTYPE html>
                      <html>
                        <head>
                          <title>DOM Example</title>
                        </head>
                        <body>
                          <h1>
                      
                      
                      
                      <p>The DOM represents it as:<br>
                      </p>
                      
                      <pre class="brush:php;toolbar:false">- Document
                        - html
                          - head
                            - title
                          - body
                            - h1
                            - p
                      </pre>
                      
                      
                      
                      
                      <hr>
                      
                      <h3>
                        
                        
                        <strong>添加和刪除元素</strong>
                      </h3>
                      
                      <h4>
                        
                        
                        <strong>1.添加元素</strong>
                      </h4>
                      
                      </pre>
                      <ul>
                      <li>
                      <strong>createElement</strong>:創(chuàng)建一個(gè)新元素。
                      </li>
                      <li>
                      <strong>appendChild</strong>:將元素追加到父元素。
                      </li>
                      </ul>
                      
                      <pre class="brush:php;toolbar:false">   const title = document.getElementById("title");
                         console.log(title.innerText); // Output: Hello, DOM!
                      </pre>
                      
                      
                      
                      <h4>
                        
                        
                        <strong>2.刪除元素</strong>
                      </h4>
                      
                      <ul>
                      <li>
                      <strong>removeChild</strong>:刪除子元素。
                      </li>
                      </ul>
                      
                      <pre class="brush:php;toolbar:false">   const paragraphs = document.getElementsByClassName("description");
                         console.log(paragraphs[0].innerText);
                      </pre>
                      
                      
                      
                      
                      <hr>
                      
                      <h3>
                        
                        
                        <strong>DOM 中的事件處理</strong>
                      </h3>
                      
                      <p>事件是瀏覽器檢測(cè)到的操作或事件,例如單擊或按鍵。  </p>
                      
                      <h4>
                        
                        
                        <strong>添加事件監(jiān)聽器</strong>
                      </h4>
                      
                      <p>使用 addEventListener 將事件綁定到元素。<br>
                      </p>
                      
                      <pre class="brush:php;toolbar:false">   const headings = document.getElementsByTagName("h1");
                         console.log(headings[0].innerText);
                      </pre>
                      
                      
                      
                      <h4>
                        
                        
                        <strong>常見事件</strong>
                      </h4>
                      
                      <ol>
                      <li>
                      <strong>鼠標(biāo)事件</strong>:?jiǎn)螕簟㈦p擊、鼠標(biāo)懸停、鼠標(biāo)移出
                      </li>
                      <li>
                      <strong>鍵盤事件</strong>:keydown、keyup
                      </li>
                      <li>
                      <strong>表單事件</strong>:提交、更改、聚焦
                      </li>
                      </ol>
                      
                      
                      <hr>
                      
                      <h3>
                        
                        
                        <strong>遍歷 DOM</strong>
                      </h3>
                      
                      <p>您可以使用 DOM 樹中的關(guān)系在元素之間導(dǎo)航。</p>
                      
                      <h4>
                        
                        
                        <strong>家長(zhǎng)和孩子</strong>
                      </h4>
                      
                      <ul>
                      <li>
                      <strong>parentNode</strong>:獲取父節(jié)點(diǎn)。
                      </li>
                      <li>
                      <strong>childNodes</strong>:列出所有子節(jié)點(diǎn)。
                      </li>
                      <li>
                      <strong>children</strong>:列出所有子元素。
                      </li>
                      </ul>
                      
                      <pre class="brush:php;toolbar:false">   const title = document.querySelector("#title");
                      </pre>
                      
                      
                      
                      <h4>
                        
                        
                        <strong>兄弟姐妹</strong>
                      </h4>
                      
                      <ul>
                      <li>
                      <strong>nextSibling</strong>:獲取下一個(gè)兄弟節(jié)點(diǎn)。
                      </li>
                      <li>
                      <strong>previousSibling</strong>:獲取上一個(gè)兄弟節(jié)點(diǎn)。
                      </li>
                      </ul>
                      
                      
                      <hr>
                      
                      <h3>
                        
                        
                        <strong>高級(jí) DOM 功能</strong>
                      </h3>
                      
                      <h4>
                        
                        
                        <strong>1.克隆元素</strong>
                      </h4>
                      
                      <p>使用cloneNode創(chuàng)建元素的副本。<br>
                      </p>
                      
                      <pre class="brush:php;toolbar:false">   const paragraphs = document.querySelectorAll(".description");
                      </pre>
                      
                      
                      
                      <h4>
                        
                        
                        <strong>2.使用類</strong>
                      </h4>
                      
                      <p>使用 classList 屬性來操作類。<br>
                      </p>
                      
                      <pre class="brush:php;toolbar:false">  document.getElementById("title").innerHTML = "Welcome to the DOM!";
                      </pre>
                      
                      
                      
                      <h4>
                        
                        
                        <strong>3.使用模板</strong>
                      </h4>
                      
                      <p>HTML 模板允許重復(fù)使用內(nèi)容。<br>
                      </p>
                      
                      <pre class="brush:php;toolbar:false">  document.getElementById("title").innerText = "Hello, World!";
                      </pre>
                      
                      
                      
                      
                      <hr>
                      
                      <h3>
                        
                        
                        <strong>DOM 操作的最佳實(shí)踐</strong>
                      </h3>
                      
                      <ol>
                      <li>
                      <p><strong>最小化回流和重繪</strong>:</p>
                      
                      <ul>
                      <li>批量 DOM 更改以避免過度渲染。
                      </li>
                      <li>使用 documentFragment 進(jìn)行多次更新。
                      </li>
                      </ul>
                      </li>
                      <li><p><strong>使用事件委托</strong>:<br><br>
                      將事件附加到父元素而不是單個(gè)子元素。<br>
                      </p></li>
                      </ol>
                      
                      <pre class="brush:php;toolbar:false"><!DOCTYPE html>
                      <html>
                        <head>
                          <title>DOM Example</title>
                        </head>
                        <body>
                          <h1>
                      
                      
                      
                      <p>The DOM represents it as:<br>
                      </p>
                      
                      <pre class="brush:php;toolbar:false">- Document
                        - html
                          - head
                            - title
                          - body
                            - h1
                            - p
                      </pre>
                      
                      
                      
                      <ol>
                      <li>
                      <strong>避免內(nèi)聯(lián) JavaScript</strong>:
                      使用外部腳本或 addEventListener 來干凈地分離代碼。</li>
                      </ol>
                      
                      
                      <hr>
                      
                      <h3>
                        
                        
                        <strong>結(jié)論</strong>
                      </h3>
                      
                      <p>JavaScript HTML DOM 是創(chuàng)建動(dòng)態(tài)和交互式網(wǎng)頁(yè)的強(qiáng)大工具。通過掌握 DOM 操作、事件處理和最佳實(shí)踐,開發(fā)人員可以構(gòu)建響應(yīng)迅速且用戶友好的應(yīng)用程序,從而增強(qiáng)整體用戶體驗(yàn)。</p>
                      
                      <p><strong>嗨,我是 Abhay Singh Kathayat!</strong><br>
                      我是一名全棧開發(fā)人員,精通前端和后端技術(shù)。我使用各種編程語(yǔ)言和框架來構(gòu)建高效、可擴(kuò)展且用戶友好的應(yīng)用程序。<br>
                      請(qǐng)隨時(shí)通過我的商務(wù)電子郵件與我聯(lián)系:kaashshorts28@gmail.com。</p>
                      
                      
                                
                      
                                  
                              </pre><p>以上是掌握 JavaScript HTML DOM:構(gòu)建動(dòng)態(tài)和交互式網(wǎng)頁(yè)的詳細(xì)內(nèi)容。更多信息請(qǐng)關(guān)注PHP中文網(wǎng)其他相關(guān)文章!</p>
                      
                      
                      						</div>
                      					</div>
                      					<div   id="377j5v51b"   class="wzconShengming_sp">
                      						<div   id="377j5v51b"   class="bzsmdiv_sp">本站聲明</div>
                      						<div>本文內(nèi)容由網(wǎng)友自發(fā)貢獻(xiàn),版權(quán)歸原作者所有,本站不承擔(dān)相應(yīng)法律責(zé)任。如您發(fā)現(xiàn)有涉嫌抄襲侵權(quán)的內(nèi)容,請(qǐng)聯(lián)系admin@php.cn</div>
                      					</div>
                      				</div>
                      
                      				<ins class="adsbygoogle"
                           style="display:block"
                           data-ad-format="autorelaxed"
                           data-ad-client="ca-pub-5902227090019525"
                           data-ad-slot="2507867629"></ins>
                      
                      
                      
                      				<div   id="377j5v51b"   class="AI_ToolDetails_main4sR">
                      
                      
                      				<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>
                          
                      
                      
                      					<!-- <div   id="377j5v51b"   class="phpgenera_Details_mainR4">
                      						<div   id="377j5v51b"   class="phpmain1_4R_readrank">
                      							<div   id="377j5v51b"   class="phpmain1_4R_readrank_top">
                      								<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
                      									onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
                      									src="/static/imghw/hotarticle2.png" alt="" />
                      								<h2>熱門文章</h2>
                      							</div>
                      							<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottom">
                      															<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms">
                      									<a href="http://www.miracleart.cn/zh/faq/1796821119.html" title="指南:恒星刀片保存文件位置/保存文件丟失/不保存" class="phpgenera_Details_mainR4_bottom_title">指南:恒星刀片保存文件位置/保存文件丟失/不保存</a>
                      									<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_info">
                      										<span>3 周前</span>
                      										<span>By DDD</span>
                      									</div>
                      								</div>
                      															<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms">
                      									<a href="http://www.miracleart.cn/zh/faq/1796827210.html" title="Oguri Cap Build Guide |漂亮的德比志" class="phpgenera_Details_mainR4_bottom_title">Oguri Cap Build Guide |漂亮的德比志</a>
                      									<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_info">
                      										<span>2 周前</span>
                      										<span>By Jack chen</span>
                      									</div>
                      								</div>
                      															<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms">
                      									<a href="http://www.miracleart.cn/zh/faq/1796828723.html" title="Agnes Tachyon Build Guide |漂亮的德比志" class="phpgenera_Details_mainR4_bottom_title">Agnes Tachyon Build Guide |漂亮的德比志</a>
                      									<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_info">
                      										<span>1 周前</span>
                      										<span>By Jack chen</span>
                      									</div>
                      								</div>
                      															<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms">
                      									<a href="http://www.miracleart.cn/zh/faq/1796821436.html" title="沙丘:覺醒 - 高級(jí)行星學(xué)家Quest演練" class="phpgenera_Details_mainR4_bottom_title">沙丘:覺醒 - 高級(jí)行星學(xué)家Quest演練</a>
                      									<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_info">
                      										<span>3 周前</span>
                      										<span>By Jack chen</span>
                      									</div>
                      								</div>
                      															<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms">
                      									<a href="http://www.miracleart.cn/zh/faq/1796821278.html" title="約會(huì)一切:德克和哈珀關(guān)系指南" class="phpgenera_Details_mainR4_bottom_title">約會(huì)一切:德克和哈珀關(guān)系指南</a>
                      									<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_info">
                      										<span>3 周前</span>
                      										<span>By Jack chen</span>
                      									</div>
                      								</div>
                      														</div>
                      							<div   id="377j5v51b"   class="phpgenera_Details_mainR3_more">
                      								<a href="http://www.miracleart.cn/zh/article.html">顯示更多</a>
                      							</div>
                      						</div>
                      					</div> -->
                      
                      
                      											<div   id="377j5v51b"   class="phpgenera_Details_mainR3">
                      							<div   id="377j5v51b"   class="phpmain1_4R_readrank">
                      								<div   id="377j5v51b"   class="phpmain1_4R_readrank_top">
                      									<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
                      										onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
                      										src="/static/imghw/hottools2.png" alt="" />
                      									<h2>熱AI工具</h2>
                      								</div>
                      								<div   id="377j5v51b"   class="phpgenera_Details_mainR3_bottom">
                      																		<div   id="377j5v51b"   class="phpmain_tab2_mids_top">
                      											<a href="http://www.miracleart.cn/zh/ai/undress-ai-tool" title="Undress AI Tool" class="phpmain_tab2_mids_top_img">
                      												<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
                      													onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
                      													class="lazy"  data-src="https://img.php.cn/upload/ai_manual/001/246/273/173410641626608.jpg?x-oss-process=image/resize,m_fill,h_50,w_50" src="/static/imghw/default1.png" alt="Undress AI Tool" />
                      											</a>
                      											<div   id="377j5v51b"   class="phpmain_tab2_mids_info">
                      												<a href="http://www.miracleart.cn/zh/ai/undress-ai-tool" title="Undress AI Tool" class="phpmain_tab2_mids_title">
                      													<h3>Undress AI Tool</h3>
                      												</a>
                      												<p>免費(fèi)脫衣服圖片</p>
                      											</div>
                      										</div>
                      																		<div   id="377j5v51b"   class="phpmain_tab2_mids_top">
                      											<a href="http://www.miracleart.cn/zh/ai/undresserai-undress" title="Undresser.AI Undress" class="phpmain_tab2_mids_top_img">
                      												<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
                      													onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
                      													class="lazy"  data-src="https://img.php.cn/upload/ai_manual/001/246/273/173411540686492.jpg?x-oss-process=image/resize,m_fill,h_50,w_50" src="/static/imghw/default1.png" alt="Undresser.AI Undress" />
                      											</a>
                      											<div   id="377j5v51b"   class="phpmain_tab2_mids_info">
                      												<a href="http://www.miracleart.cn/zh/ai/undresserai-undress" title="Undresser.AI Undress" class="phpmain_tab2_mids_title">
                      													<h3>Undresser.AI Undress</h3>
                      												</a>
                      												<p>人工智能驅(qū)動(dòng)的應(yīng)用程序,用于創(chuàng)建逼真的裸體照片</p>
                      											</div>
                      										</div>
                      																		<div   id="377j5v51b"   class="phpmain_tab2_mids_top">
                      											<a href="http://www.miracleart.cn/zh/ai/ai-clothes-remover" title="AI Clothes Remover" class="phpmain_tab2_mids_top_img">
                      												<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
                      													onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
                      													class="lazy"  data-src="https://img.php.cn/upload/ai_manual/001/246/273/173411552797167.jpg?x-oss-process=image/resize,m_fill,h_50,w_50" src="/static/imghw/default1.png" alt="AI Clothes Remover" />
                      											</a>
                      											<div   id="377j5v51b"   class="phpmain_tab2_mids_info">
                      												<a href="http://www.miracleart.cn/zh/ai/ai-clothes-remover" title="AI Clothes Remover" class="phpmain_tab2_mids_title">
                      													<h3>AI Clothes Remover</h3>
                      												</a>
                      												<p>用于從照片中去除衣服的在線人工智能工具。</p>
                      											</div>
                      										</div>
                      																		<div   id="377j5v51b"   class="phpmain_tab2_mids_top">
                      											<a href="http://www.miracleart.cn/zh/ai/clothoffio" title="Clothoff.io" class="phpmain_tab2_mids_top_img">
                      												<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
                      													onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
                      													class="lazy"  data-src="https://img.php.cn/upload/ai_manual/001/246/273/173411529149311.jpg?x-oss-process=image/resize,m_fill,h_50,w_50" src="/static/imghw/default1.png" alt="Clothoff.io" />
                      											</a>
                      											<div   id="377j5v51b"   class="phpmain_tab2_mids_info">
                      												<a href="http://www.miracleart.cn/zh/ai/clothoffio" title="Clothoff.io" class="phpmain_tab2_mids_title">
                      													<h3>Clothoff.io</h3>
                      												</a>
                      												<p>AI脫衣機(jī)</p>
                      											</div>
                      										</div>
                      																		<div   id="377j5v51b"   class="phpmain_tab2_mids_top">
                      											<a href="http://www.miracleart.cn/zh/ai/video-swap" title="Video Face Swap" class="phpmain_tab2_mids_top_img">
                      												<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
                      													onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
                      													class="lazy"  data-src="https://img.php.cn/upload/ai_manual/001/246/273/173414504068133.jpg?x-oss-process=image/resize,m_fill,h_50,w_50" src="/static/imghw/default1.png" alt="Video Face Swap" />
                      											</a>
                      											<div   id="377j5v51b"   class="phpmain_tab2_mids_info">
                      												<a href="http://www.miracleart.cn/zh/ai/video-swap" title="Video Face Swap" class="phpmain_tab2_mids_title">
                      													<h3>Video Face Swap</h3>
                      												</a>
                      												<p>使用我們完全免費(fèi)的人工智能換臉工具輕松在任何視頻中換臉!</p>
                      											</div>
                      										</div>
                      																</div>
                      								<div   id="377j5v51b"   class="phpgenera_Details_mainR3_more">
                      									<a href="http://www.miracleart.cn/zh/ai">顯示更多</a>
                      								</div>
                      							</div>
                      						</div>
                      					
                      
                      
                      					<div   id="377j5v51b"   class="phpgenera_Details_mainR4">
                      						<div   id="377j5v51b"   class="phpmain1_4R_readrank">
                      							<div   id="377j5v51b"   class="phpmain1_4R_readrank_top">
                      								<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
                      									onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
                      									src="/static/imghw/hotarticle2.png" alt="" />
                      								<h2>熱門文章</h2>
                      							</div>
                      							<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottom">
                      															<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms">
                      									<a href="http://www.miracleart.cn/zh/faq/1796821119.html" title="指南:恒星刀片保存文件位置/保存文件丟失/不保存" class="phpgenera_Details_mainR4_bottom_title">指南:恒星刀片保存文件位置/保存文件丟失/不保存</a>
                      									<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_info">
                      										<span>3 周前</span>
                      										<span>By DDD</span>
                      									</div>
                      								</div>
                      															<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms">
                      									<a href="http://www.miracleart.cn/zh/faq/1796827210.html" title="Oguri Cap Build Guide |漂亮的德比志" class="phpgenera_Details_mainR4_bottom_title">Oguri Cap Build Guide |漂亮的德比志</a>
                      									<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_info">
                      										<span>2 周前</span>
                      										<span>By Jack chen</span>
                      									</div>
                      								</div>
                      															<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms">
                      									<a href="http://www.miracleart.cn/zh/faq/1796828723.html" title="Agnes Tachyon Build Guide |漂亮的德比志" class="phpgenera_Details_mainR4_bottom_title">Agnes Tachyon Build Guide |漂亮的德比志</a>
                      									<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_info">
                      										<span>1 周前</span>
                      										<span>By Jack chen</span>
                      									</div>
                      								</div>
                      															<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms">
                      									<a href="http://www.miracleart.cn/zh/faq/1796821436.html" title="沙丘:覺醒 - 高級(jí)行星學(xué)家Quest演練" class="phpgenera_Details_mainR4_bottom_title">沙丘:覺醒 - 高級(jí)行星學(xué)家Quest演練</a>
                      									<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_info">
                      										<span>3 周前</span>
                      										<span>By Jack chen</span>
                      									</div>
                      								</div>
                      															<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms">
                      									<a href="http://www.miracleart.cn/zh/faq/1796821278.html" title="約會(huì)一切:德克和哈珀關(guān)系指南" class="phpgenera_Details_mainR4_bottom_title">約會(huì)一切:德克和哈珀關(guān)系指南</a>
                      									<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_info">
                      										<span>3 周前</span>
                      										<span>By Jack chen</span>
                      									</div>
                      								</div>
                      														</div>
                      							<div   id="377j5v51b"   class="phpgenera_Details_mainR3_more">
                      								<a href="http://www.miracleart.cn/zh/article.html">顯示更多</a>
                      							</div>
                      						</div>
                      					</div>
                      
                      
                      											<div   id="377j5v51b"   class="phpgenera_Details_mainR3">
                      							<div   id="377j5v51b"   class="phpmain1_4R_readrank">
                      								<div   id="377j5v51b"   class="phpmain1_4R_readrank_top">
                      									<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
                      										onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
                      										src="/static/imghw/hottools2.png" alt="" />
                      									<h2>熱工具</h2>
                      								</div>
                      								<div   id="377j5v51b"   class="phpgenera_Details_mainR3_bottom">
                      																		<div   id="377j5v51b"   class="phpmain_tab2_mids_top">
                      											<a href="http://www.miracleart.cn/zh/toolset/development-tools/92" title="記事本++7.3.1" class="phpmain_tab2_mids_top_img">
                      												<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
                      													onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
                      													class="lazy"  data-src="https://img.php.cn/upload/manual/000/000/001/58ab96f0f39f7357.jpg?x-oss-process=image/resize,m_fill,h_50,w_72" src="/static/imghw/default1.png" alt="記事本++7.3.1" />
                      											</a>
                      											<div   id="377j5v51b"   class="phpmain_tab2_mids_info">
                      												<a href="http://www.miracleart.cn/zh/toolset/development-tools/92" title="記事本++7.3.1" class="phpmain_tab2_mids_title">
                      													<h3>記事本++7.3.1</h3>
                      												</a>
                      												<p>好用且免費(fèi)的代碼編輯器</p>
                      											</div>
                      										</div>
                      																			<div   id="377j5v51b"   class="phpmain_tab2_mids_top">
                      											<a href="http://www.miracleart.cn/zh/toolset/development-tools/93" title="SublimeText3漢化版" class="phpmain_tab2_mids_top_img">
                      												<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
                      													onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
                      													class="lazy"  data-src="https://img.php.cn/upload/manual/000/000/001/58ab97a3baad9677.jpg?x-oss-process=image/resize,m_fill,h_50,w_72" src="/static/imghw/default1.png" alt="SublimeText3漢化版" />
                      											</a>
                      											<div   id="377j5v51b"   class="phpmain_tab2_mids_info">
                      												<a href="http://www.miracleart.cn/zh/toolset/development-tools/93" title="SublimeText3漢化版" class="phpmain_tab2_mids_title">
                      													<h3>SublimeText3漢化版</h3>
                      												</a>
                      												<p>中文版,非常好用</p>
                      											</div>
                      										</div>
                      																			<div   id="377j5v51b"   class="phpmain_tab2_mids_top">
                      											<a href="http://www.miracleart.cn/zh/toolset/development-tools/121" title="禪工作室 13.0.1" class="phpmain_tab2_mids_top_img">
                      												<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
                      													onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
                      													class="lazy"  data-src="https://img.php.cn/upload/manual/000/000/001/58ab97ecd1ab2670.jpg?x-oss-process=image/resize,m_fill,h_50,w_72" src="/static/imghw/default1.png" alt="禪工作室 13.0.1" />
                      											</a>
                      											<div   id="377j5v51b"   class="phpmain_tab2_mids_info">
                      												<a href="http://www.miracleart.cn/zh/toolset/development-tools/121" title="禪工作室 13.0.1" class="phpmain_tab2_mids_title">
                      													<h3>禪工作室 13.0.1</h3>
                      												</a>
                      												<p>功能強(qiáng)大的PHP集成開發(fā)環(huán)境</p>
                      											</div>
                      										</div>
                      																			<div   id="377j5v51b"   class="phpmain_tab2_mids_top">
                      											<a href="http://www.miracleart.cn/zh/toolset/development-tools/469" title="Dreamweaver CS6" class="phpmain_tab2_mids_top_img">
                      												<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
                      													onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
                      													class="lazy"  data-src="https://img.php.cn/upload/manual/000/000/001/58d0e0fc74683535.jpg?x-oss-process=image/resize,m_fill,h_50,w_72" src="/static/imghw/default1.png" alt="Dreamweaver CS6" />
                      											</a>
                      											<div   id="377j5v51b"   class="phpmain_tab2_mids_info">
                      												<a href="http://www.miracleart.cn/zh/toolset/development-tools/469" title="Dreamweaver CS6" class="phpmain_tab2_mids_title">
                      													<h3>Dreamweaver CS6</h3>
                      												</a>
                      												<p>視覺化網(wǎng)頁(yè)開發(fā)工具</p>
                      											</div>
                      										</div>
                      																			<div   id="377j5v51b"   class="phpmain_tab2_mids_top">
                      											<a href="http://www.miracleart.cn/zh/toolset/development-tools/500" title="SublimeText3 Mac版" class="phpmain_tab2_mids_top_img">
                      												<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
                      													onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
                      													class="lazy"  data-src="https://img.php.cn/upload/manual/000/000/001/58d34035e2757995.png?x-oss-process=image/resize,m_fill,h_50,w_72" src="/static/imghw/default1.png" alt="SublimeText3 Mac版" />
                      											</a>
                      											<div   id="377j5v51b"   class="phpmain_tab2_mids_info">
                      												<a href="http://www.miracleart.cn/zh/toolset/development-tools/500" title="SublimeText3 Mac版" class="phpmain_tab2_mids_title">
                      													<h3>SublimeText3 Mac版</h3>
                      												</a>
                      												<p>神級(jí)代碼編輯軟件(SublimeText3)</p>
                      											</div>
                      										</div>
                      																	</div>
                      								<div   id="377j5v51b"   class="phpgenera_Details_mainR3_more">
                      									<a href="http://www.miracleart.cn/zh/ai">顯示更多</a>
                      								</div>
                      							</div>
                      						</div>
                      										
                      
                      					
                      					<div   id="377j5v51b"   class="phpgenera_Details_mainR4">
                      						<div   id="377j5v51b"   class="phpmain1_4R_readrank">
                      							<div   id="377j5v51b"   class="phpmain1_4R_readrank_top">
                      								<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
                      									onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
                      									src="/static/imghw/hotarticle2.png" alt="" />
                      								<h2>熱門話題</h2>
                      							</div>
                      							<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottom">
                      															<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms">
                      									<a href="http://www.miracleart.cn/zh/faq/gmailyxdlrkzn" title="gmail郵箱登陸入口在哪里" class="phpgenera_Details_mainR4_bottom_title">gmail郵箱登陸入口在哪里</a>
                      									<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_info">
                      										<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_infos">
                      											<img src="/static/imghw/eyess.png" alt="" />
                      											<span>8635</span>
                      										</div>
                      										<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_infos">
                      											<img src="/static/imghw/tiezi.png" alt="" />
                      											<span>17</span>
                      										</div>
                      									</div>
                      								</div>
                      															<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms">
                      									<a href="http://www.miracleart.cn/zh/faq/java-tutorial" title="Java教程" class="phpgenera_Details_mainR4_bottom_title">Java教程</a>
                      									<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_info">
                      										<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_infos">
                      											<img src="/static/imghw/eyess.png" alt="" />
                      											<span>1783</span>
                      										</div>
                      										<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_infos">
                      											<img src="/static/imghw/tiezi.png" alt="" />
                      											<span>16</span>
                      										</div>
                      									</div>
                      								</div>
                      															<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms">
                      									<a href="http://www.miracleart.cn/zh/faq/cakephp-tutor" title="CakePHP 教程" class="phpgenera_Details_mainR4_bottom_title">CakePHP 教程</a>
                      									<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_info">
                      										<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_infos">
                      											<img src="/static/imghw/eyess.png" alt="" />
                      											<span>1723</span>
                      										</div>
                      										<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_infos">
                      											<img src="/static/imghw/tiezi.png" alt="" />
                      											<span>56</span>
                      										</div>
                      									</div>
                      								</div>
                      															<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms">
                      									<a href="http://www.miracleart.cn/zh/faq/laravel-tutori" title="Laravel 教程" class="phpgenera_Details_mainR4_bottom_title">Laravel 教程</a>
                      									<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_info">
                      										<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_infos">
                      											<img src="/static/imghw/eyess.png" alt="" />
                      											<span>1577</span>
                      										</div>
                      										<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_infos">
                      											<img src="/static/imghw/tiezi.png" alt="" />
                      											<span>28</span>
                      										</div>
                      									</div>
                      								</div>
                      															<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms">
                      									<a href="http://www.miracleart.cn/zh/faq/php-tutorial" title="PHP教程" class="phpgenera_Details_mainR4_bottom_title">PHP教程</a>
                      									<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_info">
                      										<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_infos">
                      											<img src="/static/imghw/eyess.png" alt="" />
                      											<span>1440</span>
                      										</div>
                      										<div   id="377j5v51b"   class="phpgenera_Details_mainR4_bottoms_infos">
                      											<img src="/static/imghw/tiezi.png" alt="" />
                      											<span>31</span>
                      										</div>
                      									</div>
                      								</div>
                      														</div>
                      							<div   id="377j5v51b"   class="phpgenera_Details_mainR3_more">
                      								<a href="http://www.miracleart.cn/zh/faq/zt">顯示更多</a>
                      							</div>
                      						</div>
                      					</div>
                      				</div>
                      			</div>
                      							<div   id="377j5v51b"   class="Article_Details_main2">
                      					<div   id="377j5v51b"   class="phpgenera_Details_mainL4">
                      						<div   id="377j5v51b"   class="phpmain1_2_top">
                      							<a href="javascript:void(0);" class="phpmain1_2_top_title">Related knowledge<img
                      									src="/static/imghw/index2_title2.png" alt="" /></a>
                      						</div>
                      						<div   id="377j5v51b"   class="phpgenera_Details_mainL4_info">
                      
                      													<div   id="377j5v51b"   class="phphistorical_Version2_mids">
                      								<a href="http://www.miracleart.cn/zh/faq/1796822063.html" title="Java vs. JavaScript:清除混亂" class="phphistorical_Version2_mids_img">
                      									<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
                      										src="/static/imghw/default1.png" class="lazy"  data-src="https://img.php.cn/upload/article/001/253/068/175035046165294.jpg?x-oss-process=image/resize,m_fill,h_207,w_330" alt="Java vs. JavaScript:清除混亂" />
                      								</a>
                      								<a href="http://www.miracleart.cn/zh/faq/1796822063.html" title="Java vs. JavaScript:清除混亂" class="phphistorical_Version2_mids_title">Java vs. JavaScript:清除混亂</a>
                      								<span id="377j5v51b"    class="Articlelist_txts_time">Jun 20, 2025 am	 12:27 AM</span>
                      								<p class="Articlelist_txts_p">Java和JavaScript是不同的編程語(yǔ)言,各自適用于不同的應(yīng)用場(chǎng)景。Java用于大型企業(yè)和移動(dòng)應(yīng)用開發(fā),而JavaScript主要用于網(wǎng)頁(yè)開發(fā)。</p>
                      							</div>
                      														<div   id="377j5v51b"   class="phphistorical_Version2_mids">
                      								<a href="http://www.miracleart.cn/zh/faq/1796821632.html" title="JavaScript評(píng)論:簡(jiǎn)短說明" class="phphistorical_Version2_mids_img">
                      									<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
                      										src="/static/imghw/default1.png" class="lazy"  data-src="https://img.php.cn/upload/article/001/253/068/175026483186295.jpg?x-oss-process=image/resize,m_fill,h_207,w_330" alt="JavaScript評(píng)論:簡(jiǎn)短說明" />
                      								</a>
                      								<a href="http://www.miracleart.cn/zh/faq/1796821632.html" title="JavaScript評(píng)論:簡(jiǎn)短說明" class="phphistorical_Version2_mids_title">JavaScript評(píng)論:簡(jiǎn)短說明</a>
                      								<span id="377j5v51b"    class="Articlelist_txts_time">Jun 19, 2025 am	 12:40 AM</span>
                      								<p class="Articlelist_txts_p">JavascriptconcommentsenceenceEncorenceEnterential gransimenting,reading and guidingCodeeXecution.1)單inecommentsareusedforquickexplanations.2)多l(xiāng)inecommentsexplaincomplexlogicorprovideDocumentation.3)</p>
                      							</div>
                      														<div   id="377j5v51b"   class="phphistorical_Version2_mids">
                      								<a href="http://www.miracleart.cn/zh/faq/1796827639.html" title="如何在JS中與日期和時(shí)間合作?" class="phphistorical_Version2_mids_img">
                      									<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
                      										src="/static/imghw/default1.png" class="lazy"  data-src="https://img.php.cn/upload/article/001/431/639/175130445135407.jpg?x-oss-process=image/resize,m_fill,h_207,w_330" alt="如何在JS中與日期和時(shí)間合作?" />
                      								</a>
                      								<a href="http://www.miracleart.cn/zh/faq/1796827639.html" title="如何在JS中與日期和時(shí)間合作?" class="phphistorical_Version2_mids_title">如何在JS中與日期和時(shí)間合作?</a>
                      								<span id="377j5v51b"    class="Articlelist_txts_time">Jul 01, 2025 am	 01:27 AM</span>
                      								<p class="Articlelist_txts_p">JavaScript中的日期和時(shí)間處理需注意以下幾點(diǎn):1.創(chuàng)建Date對(duì)象有多種方式,推薦使用ISO格式字符串以保證兼容性;2.獲取和設(shè)置時(shí)間信息可用get和set方法,注意月份從0開始;3.手動(dòng)格式化日期需拼接字符串,也可使用第三方庫(kù);4.處理時(shí)區(qū)問題建議使用支持時(shí)區(qū)的庫(kù),如Luxon。掌握這些要點(diǎn)能有效避免常見錯(cuò)誤。</p>
                      							</div>
                      														<div   id="377j5v51b"   class="phphistorical_Version2_mids">
                      								<a href="http://www.miracleart.cn/zh/faq/1796822037.html" title="JavaScript與Java:開發(fā)人員的全面比較" class="phphistorical_Version2_mids_img">
                      									<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
                      										src="/static/imghw/default1.png" class="lazy"  data-src="https://img.php.cn/upload/article/001/253/068/175035006093854.jpg?x-oss-process=image/resize,m_fill,h_207,w_330" alt="JavaScript與Java:開發(fā)人員的全面比較" />
                      								</a>
                      								<a href="http://www.miracleart.cn/zh/faq/1796822037.html" title="JavaScript與Java:開發(fā)人員的全面比較" class="phphistorical_Version2_mids_title">JavaScript與Java:開發(fā)人員的全面比較</a>
                      								<span id="377j5v51b"    class="Articlelist_txts_time">Jun 20, 2025 am	 12:21 AM</span>
                      								<p class="Articlelist_txts_p">JavaScriptIspreferredforredforwebdevelverment,而Javaisbetterforlarge-ScalebackendsystystemsandSandAndRoidApps.1)JavascriptexcelcelsincreatingInteractiveWebexperienceswebexperienceswithitswithitsdynamicnnamicnnamicnnamicnnamicnemicnemicnemicnemicnemicnemicnemicnemicnddommanipulation.2)</p>
                      							</div>
                      														<div   id="377j5v51b"   class="phphistorical_Version2_mids">
                      								<a href="http://www.miracleart.cn/zh/faq/1796828200.html" title="為什么要將標(biāo)簽放在的底部?" class="phphistorical_Version2_mids_img">
                      									<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
                      										src="/static/imghw/default1.png" class="lazy"  data-src="https://img.php.cn/upload/article/001/253/068/175139053194540.jpg?x-oss-process=image/resize,m_fill,h_207,w_330" alt="為什么要將標(biāo)簽放在的底部?" />
                      								</a>
                      								<a href="http://www.miracleart.cn/zh/faq/1796828200.html" title="為什么要將標(biāo)簽放在的底部?" class="phphistorical_Version2_mids_title">為什么要將標(biāo)簽放在的底部?</a>
                      								<span id="377j5v51b"    class="Articlelist_txts_time">Jul 02, 2025 am	 01:22 AM</span>
                      								<p class="Articlelist_txts_p">PlacingtagsatthebottomofablogpostorwebpageservespracticalpurposesforSEO,userexperience,anddesign.1.IthelpswithSEObyallowingsearchenginestoaccesskeyword-relevanttagswithoutclutteringthemaincontent.2.Itimprovesuserexperiencebykeepingthefocusonthearticl</p>
                      							</div>
                      														<div   id="377j5v51b"   class="phphistorical_Version2_mids">
                      								<a href="http://www.miracleart.cn/zh/faq/1796822137.html" title="JavaScript:探索用于高效編碼的數(shù)據(jù)類型" class="phphistorical_Version2_mids_img">
                      									<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
                      										src="/static/imghw/default1.png" class="lazy"  data-src="https://img.php.cn/upload/article/001/253/068/175035157160537.jpg?x-oss-process=image/resize,m_fill,h_207,w_330" alt="JavaScript:探索用于高效編碼的數(shù)據(jù)類型" />
                      								</a>
                      								<a href="http://www.miracleart.cn/zh/faq/1796822137.html" title="JavaScript:探索用于高效編碼的數(shù)據(jù)類型" class="phphistorical_Version2_mids_title">JavaScript:探索用于高效編碼的數(shù)據(jù)類型</a>
                      								<span id="377j5v51b"    class="Articlelist_txts_time">Jun 20, 2025 am	 12:46 AM</span>
                      								<p class="Articlelist_txts_p">javascripthassevenfundaMentalDatatypes:數(shù)字,弦,布爾值,未定義,null,object和symbol.1)numberSeadUble-eaduble-ecisionFormat,forwidevaluerangesbutbecautious.2)</p>
                      							</div>
                      														<div   id="377j5v51b"   class="phphistorical_Version2_mids">
                      								<a href="http://www.miracleart.cn/zh/faq/1796828191.html" title="什么是在DOM中冒泡和捕獲的事件?" class="phphistorical_Version2_mids_img">
                      									<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
                      										src="/static/imghw/default1.png" class="lazy"  data-src="https://img.php.cn/upload/article/001/253/068/175139034116786.jpg?x-oss-process=image/resize,m_fill,h_207,w_330" alt="什么是在DOM中冒泡和捕獲的事件?" />
                      								</a>
                      								<a href="http://www.miracleart.cn/zh/faq/1796828191.html" title="什么是在DOM中冒泡和捕獲的事件?" class="phphistorical_Version2_mids_title">什么是在DOM中冒泡和捕獲的事件?</a>
                      								<span id="377j5v51b"    class="Articlelist_txts_time">Jul 02, 2025 am	 01:19 AM</span>
                      								<p class="Articlelist_txts_p">事件捕獲和冒泡是DOM中事件傳播的兩個(gè)階段,捕獲是從頂層向下到目標(biāo)元素,冒泡是從目標(biāo)元素向上傳播到頂層。1.事件捕獲通過addEventListener的useCapture參數(shù)設(shè)為true實(shí)現(xiàn);2.事件冒泡是默認(rèn)行為,useCapture設(shè)為false或省略;3.可使用event.stopPropagation()阻止事件傳播;4.冒泡支持事件委托,提高動(dòng)態(tài)內(nèi)容處理效率;5.捕獲可用于提前攔截事件,如日志記錄或錯(cuò)誤處理。了解這兩個(gè)階段有助于精確控制JavaScript響應(yīng)用戶操作的時(shí)機(jī)和方式。</p>
                      							</div>
                      														<div   id="377j5v51b"   class="phphistorical_Version2_mids">
                      								<a href="http://www.miracleart.cn/zh/faq/1796820615.html" title="Java和JavaScript有什么區(qū)別?" class="phphistorical_Version2_mids_img">
                      									<img onerror="this.onerror=''; this.src='/static/imghw/default1.png'"
                      										src="/static/imghw/default1.png" class="lazy"  data-src="https://img.php.cn/upload/article/001/253/068/175012302052703.jpg?x-oss-process=image/resize,m_fill,h_207,w_330" alt="Java和JavaScript有什么區(qū)別?" />
                      								</a>
                      								<a href="http://www.miracleart.cn/zh/faq/1796820615.html" title="Java和JavaScript有什么區(qū)別?" class="phphistorical_Version2_mids_title">Java和JavaScript有什么區(qū)別?</a>
                      								<span id="377j5v51b"    class="Articlelist_txts_time">Jun 17, 2025 am	 09:17 AM</span>
                      								<p class="Articlelist_txts_p">Java和JavaScript是不同的編程語(yǔ)言。1.Java是靜態(tài)類型、編譯型語(yǔ)言,適用于企業(yè)應(yīng)用和大型系統(tǒng)。2.JavaScript是動(dòng)態(tài)類型、解釋型語(yǔ)言,主要用于網(wǎng)頁(yè)交互和前端開發(fā)。</p>
                      							</div>
                      													</div>
                      
                      													<a href="http://www.miracleart.cn/zh/web-designer.html" class="phpgenera_Details_mainL4_botton">
                      								<span>See all articles</span>
                      								<img src="/static/imghw/down_right.png" alt="" />
                      							</a>
                      											</div>
                      				</div>
                      					</div>
                      	</main>
                      	<footer>
                          <div   id="377j5v51b"   class="footer">
                              <div   id="377j5v51b"   class="footertop">
                                  <img src="/static/imghw/logo.png" alt="">
                                  <p>公益在線PHP培訓(xùn),幫助PHP學(xué)習(xí)者快速成長(zhǎng)!</p>
                              </div>
                              <div   id="377j5v51b"   class="footermid">
                                  <a href="http://www.miracleart.cn/zh/about/us.html">關(guān)于我們</a>
                                  <a href="http://www.miracleart.cn/zh/about/disclaimer.html">免責(zé)聲明</a>
                                  <a href="http://www.miracleart.cn/zh/update/article_0_1.html">Sitemap</a>
                              </div>
                              <div   id="377j5v51b"   class="footerbottom">
                                  <p>
                                      ? php.cn All rights reserved
                                  </p>
                              </div>
                          </div>
                      </footer>
                      
                      <input type="hidden" id="verifycode" value="/captcha.html">
                      
                      
                      
                      
                      		<link rel='stylesheet' id='_main-css' href='/static/css/viewer.min.css?2' type='text/css' media='all' />
                      	
                      	
                      	
                      	
                      	
                      
                      	
                      	
                      
                      
                      
                      
                      
                      
                      <footer>
                      <div class="friendship-link">
                      <p>感谢您访问我们的网站,您可能还对以下资源感兴趣:</p>
                      <a href="http://www.miracleart.cn/" title="国产av日韩一区二区三区精品">国产av日韩一区二区三区精品</a>
                      
                      <div class="friend-links">
                      
                      
                      </div>
                      </div>
                      
                      </footer>
                      
                      
                      <script>
                      (function(){
                          var bp = document.createElement('script');
                          var curProtocol = window.location.protocol.split(':')[0];
                          if (curProtocol === 'https') {
                              bp.src = 'https://zz.bdstatic.com/linksubmit/push.js';
                          }
                          else {
                              bp.src = 'http://push.zhanzhang.baidu.com/push.js';
                          }
                          var s = document.getElementsByTagName("script")[0];
                          s.parentNode.insertBefore(bp, s);
                      })();
                      </script>
                      </body><div id="jzyr4" class="pl_css_ganrao" style="display: none;"><form id="jzyr4"><label id="jzyr4"><form id="jzyr4"></form></label></form><menuitem id="jzyr4"></menuitem><em id="jzyr4"></em><nav id="jzyr4"><i id="jzyr4"><noframes id="jzyr4"></noframes></i></nav><pre id="jzyr4"></pre><pre id="jzyr4"><strike id="jzyr4"><style id="jzyr4"></style></strike></pre><progress id="jzyr4"></progress><rt id="jzyr4"><input id="jzyr4"><ul id="jzyr4"></ul></input></rt><small id="jzyr4"></small><li id="jzyr4"><font id="jzyr4"><strike id="jzyr4"><pre id="jzyr4"></pre></strike></font></li><legend id="jzyr4"></legend><ruby id="jzyr4"></ruby><th id="jzyr4"><label id="jzyr4"></label></th><source id="jzyr4"></source><label id="jzyr4"></label><center id="jzyr4"><code id="jzyr4"></code></center><samp id="jzyr4"><pre id="jzyr4"><bdo id="jzyr4"></bdo></pre></samp><label id="jzyr4"></label><i id="jzyr4"><strong id="jzyr4"><button id="jzyr4"></button></strong></i><option id="jzyr4"><td id="jzyr4"><rt id="jzyr4"></rt></td></option><dfn id="jzyr4"></dfn><delect id="jzyr4"></delect><font id="jzyr4"><address id="jzyr4"><center id="jzyr4"></center></address></font><td id="jzyr4"></td><video id="jzyr4"></video><form id="jzyr4"><td id="jzyr4"><rt id="jzyr4"></rt></td></form><strike id="jzyr4"><pre id="jzyr4"></pre></strike><abbr id="jzyr4"></abbr><thead id="jzyr4"></thead><meter id="jzyr4"><thead id="jzyr4"><nav id="jzyr4"><rp id="jzyr4"></rp></nav></thead></meter><b id="jzyr4"><th id="jzyr4"><cite id="jzyr4"></cite></th></b><legend id="jzyr4"></legend><video id="jzyr4"></video><strong id="jzyr4"><del id="jzyr4"></del></strong><mark id="jzyr4"><wbr id="jzyr4"></wbr></mark><table id="jzyr4"></table><tr id="jzyr4"></tr><pre id="jzyr4"></pre><s id="jzyr4"></s><div id="jzyr4"><input id="jzyr4"><optgroup id="jzyr4"><sub id="jzyr4"></sub></optgroup></input></div><ol id="jzyr4"></ol><optgroup id="jzyr4"></optgroup><small id="jzyr4"><center id="jzyr4"></center></small><strong id="jzyr4"><abbr id="jzyr4"><thead id="jzyr4"><legend id="jzyr4"></legend></thead></abbr></strong><ins id="jzyr4"></ins><code id="jzyr4"><dfn id="jzyr4"><sup id="jzyr4"></sup></dfn></code><output id="jzyr4"></output><progress id="jzyr4"><s id="jzyr4"></s></progress><table id="jzyr4"><em id="jzyr4"><menuitem id="jzyr4"></menuitem></em></table><pre id="jzyr4"><tfoot id="jzyr4"><i id="jzyr4"></i></tfoot></pre><ruby id="jzyr4"><source id="jzyr4"><dfn id="jzyr4"><th id="jzyr4"></th></dfn></source></ruby><ins id="jzyr4"><tt id="jzyr4"><delect id="jzyr4"></delect></tt></ins><em id="jzyr4"></em><tt id="jzyr4"></tt><rp id="jzyr4"></rp><sub id="jzyr4"><dl id="jzyr4"><bdo id="jzyr4"><small id="jzyr4"></small></bdo></dl></sub><nobr id="jzyr4"><ruby id="jzyr4"><dd id="jzyr4"><sup id="jzyr4"></sup></dd></ruby></nobr><pre id="jzyr4"><code id="jzyr4"><dfn id="jzyr4"></dfn></code></pre><dfn id="jzyr4"><font id="jzyr4"><strike id="jzyr4"></strike></font></dfn><mark id="jzyr4"><div id="jzyr4"><var id="jzyr4"></var></div></mark><b id="jzyr4"></b><strike id="jzyr4"></strike><style id="jzyr4"></style><tr id="jzyr4"><sub id="jzyr4"><acronym id="jzyr4"><strong id="jzyr4"></strong></acronym></sub></tr><video id="jzyr4"><strike id="jzyr4"><style id="jzyr4"><small id="jzyr4"></small></style></strike></video><ol id="jzyr4"></ol><acronym id="jzyr4"></acronym><sup id="jzyr4"></sup><sup id="jzyr4"><tbody id="jzyr4"><xmp id="jzyr4"><ol id="jzyr4"></ol></xmp></tbody></sup><form id="jzyr4"><cite id="jzyr4"><form id="jzyr4"><abbr id="jzyr4"></abbr></form></cite></form><center id="jzyr4"><legend id="jzyr4"><i id="jzyr4"></i></legend></center><big id="jzyr4"><thead id="jzyr4"><style id="jzyr4"><optgroup id="jzyr4"></optgroup></style></thead></big><option id="jzyr4"></option><samp id="jzyr4"><meter id="jzyr4"></meter></samp><menuitem id="jzyr4"><pre id="jzyr4"><strike id="jzyr4"><center id="jzyr4"></center></strike></pre></menuitem><dl id="jzyr4"><s id="jzyr4"></s></dl><thead id="jzyr4"></thead><p id="jzyr4"></p><span id="jzyr4"><wbr id="jzyr4"></wbr></span><acronym id="jzyr4"><sup id="jzyr4"></sup></acronym><kbd id="jzyr4"></kbd><nobr id="jzyr4"><video id="jzyr4"></video></nobr><pre id="jzyr4"><source id="jzyr4"></source></pre><progress id="jzyr4"><label id="jzyr4"><nobr id="jzyr4"><video id="jzyr4"></video></nobr></label></progress><menuitem id="jzyr4"><tr id="jzyr4"><strike id="jzyr4"><strong id="jzyr4"></strong></strike></tr></menuitem><form id="jzyr4"><optgroup id="jzyr4"><div id="jzyr4"></div></optgroup></form><span id="jzyr4"><wbr id="jzyr4"><strike id="jzyr4"><track id="jzyr4"></track></strike></wbr></span><em id="jzyr4"></em><dd id="jzyr4"><sup id="jzyr4"><u id="jzyr4"><progress id="jzyr4"></progress></u></sup></dd><xmp id="jzyr4"><big id="jzyr4"></big></xmp><p id="jzyr4"><option id="jzyr4"></option></p><label id="jzyr4"></label><span id="jzyr4"></span><acronym id="jzyr4"></acronym><kbd id="jzyr4"></kbd><dfn id="jzyr4"></dfn><em id="jzyr4"><form id="jzyr4"><cite id="jzyr4"><b id="jzyr4"></b></cite></form></em><th id="jzyr4"><label id="jzyr4"><form id="jzyr4"></form></label></th><font id="jzyr4"></font></div>
                      
                      </html>