aboutsummaryrefslogtreecommitdiff
path: root/files/zh-tw/glossary/jquery
diff options
context:
space:
mode:
authorPeter Bengtsson <mail@peterbe.com>2020-12-08 14:43:23 -0500
committerPeter Bengtsson <mail@peterbe.com>2020-12-08 14:43:23 -0500
commit218934fa2ed1c702a6d3923d2aa2cc6b43c48684 (patch)
treea9ef8ac1e1b8fe4207b6d64d3841bfb8990b6fd0 /files/zh-tw/glossary/jquery
parent074785cea106179cb3305637055ab0a009ca74f2 (diff)
downloadtranslated-content-218934fa2ed1c702a6d3923d2aa2cc6b43c48684.tar.gz
translated-content-218934fa2ed1c702a6d3923d2aa2cc6b43c48684.tar.bz2
translated-content-218934fa2ed1c702a6d3923d2aa2cc6b43c48684.zip
initial commit
Diffstat (limited to 'files/zh-tw/glossary/jquery')
-rw-r--r--files/zh-tw/glossary/jquery/index.html42
1 files changed, 42 insertions, 0 deletions
diff --git a/files/zh-tw/glossary/jquery/index.html b/files/zh-tw/glossary/jquery/index.html
new file mode 100644
index 0000000000..66c7f1035e
--- /dev/null
+++ b/files/zh-tw/glossary/jquery/index.html
@@ -0,0 +1,42 @@
+---
+title: jQuery
+slug: Glossary/jQuery
+translation_of: Glossary/jQuery
+---
+<p><span class="seoSummary">jQuery 是專精於簡化 {{Glossary("DOM")}}、{{Glossary("AJAX")}}、與 {{Glossary("Event")}} 操作的 {{Glossary("JavaScript")}} {{Glossary("函式庫")}}。</span></p>
+
+<p>jQuery 用 <code>$(selector).action()</code> 格式,指派元素到指定的事件。詳細來說, <code>$(selector)</code> 會呼叫 jQuery 選取 <code>selector</code> 元素,並指派它到稱作 <code>.action()</code> 事件的 {{Glossary("API")}}。</p>
+
+<pre class="brush: js"><code class="language-js">$(document).ready(function(){
+ alert("Hello World!");
+ $("#blackBox").hide();
+});</code></pre>
+
+<p>上面這段 jQuery 程式碼,會執行與這段原生 JavaScript 程式碼相同的事情:</p>
+
+<pre class="brush: js">window.onload = function() {
+ alert("Hello World!");
+ document.getElementById("blackBox").style.display = "none";
+};</pre>
+
+<p>或這段:</p>
+
+<pre class="brush: js">window.addEventListener("load", () =&gt; {
+ alert("Hello World!");
+ document.getElementById("blackBox").style.display = "none";
+});</pre>
+
+<h2 id="深入理解">深入理解</h2>
+
+<h3 id="基本知識">基本知識</h3>
+
+<ul>
+ <li>維基百科的 {{Interwiki("wikipedia", "jQuery")}}</li>
+ <li><a href="https://jquery.com/">jQuery 官方網站</a></li>
+</ul>
+
+<h3 id="技術資訊">技術資訊</h3>
+
+<ul>
+ <li><a href="https://api.jquery.com/">API 參考文件</a></li>
+</ul>