aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/javascript
diff options
context:
space:
mode:
authorMasahiro FUJIMOTO <mfujimot@gmail.com>2021-09-18 10:59:32 +0900
committerMasahiro FUJIMOTO <mfujimot@gmail.com>2021-09-26 11:21:52 +0900
commit6b15e2ea36700f1e1a528b278e9ed4a20af05e62 (patch)
tree4cc21fc9552ec4865d14ff5d2849e843adbcdcf3 /files/ja/web/javascript
parent5b33f9acd723a400c1b565f1e05b784a60860210 (diff)
downloadtranslated-content-6b15e2ea36700f1e1a528b278e9ed4a20af05e62.tar.gz
translated-content-6b15e2ea36700f1e1a528b278e9ed4a20af05e62.tar.bz2
translated-content-6b15e2ea36700f1e1a528b278e9ed4a20af05e62.zip
リンクエラーの修正
Diffstat (limited to 'files/ja/web/javascript')
-rw-r--r--files/ja/web/javascript/reference/operators/this/index.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/files/ja/web/javascript/reference/operators/this/index.html b/files/ja/web/javascript/reference/operators/this/index.html
index 1d466424d4..eb3ac7425d 100644
--- a/files/ja/web/javascript/reference/operators/this/index.html
+++ b/files/ja/web/javascript/reference/operators/this/index.html
@@ -398,7 +398,7 @@ for(var i = 0 ; i &lt; elements.length; i++){
<h3 id="In_an_inline_event_handler" name="In_an_inline_event_handler">インラインイベントハンドラー内</h3>
-<p>コードがインラインの <a href="/ja/docs/Web/Guide/Events/Event_handlers">on-イベントハンドラー</a>から呼び出されたとき、その <code>this</code> にはリスナーが配置されている DOM 要素が設定されます。</p>
+<p>コードがインラインの <a href="/ja/docs/orphaned/Web/Guide/Events/Event_handlers">on-イベントハンドラー</a>から呼び出されたとき、その <code>this</code> にはリスナーが配置されている DOM 要素が設定されます。</p>
<pre class="brush:js notranslate">&lt;button onclick="alert(this.tagName.toLowerCase());"&gt;
Show this