diff options
author | Masahiro FUJIMOTO <mfujimot@gmail.com> | 2021-09-18 10:59:32 +0900 |
---|---|---|
committer | Masahiro FUJIMOTO <mfujimot@gmail.com> | 2021-09-26 11:21:52 +0900 |
commit | 6b15e2ea36700f1e1a528b278e9ed4a20af05e62 (patch) | |
tree | 4cc21fc9552ec4865d14ff5d2849e843adbcdcf3 /files/ja/web/javascript | |
parent | 5b33f9acd723a400c1b565f1e05b784a60860210 (diff) | |
download | translated-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.html | 2 |
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 < 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"><button onclick="alert(this.tagName.toLowerCase());"> Show this |