aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--files/ja/_redirects.txt4
-rw-r--r--files/ja/_wikihistory.json14
-rw-r--r--files/ja/web/guide/html/constraint_validation/index.html (renamed from files/ja/orphaned/web/guide/html/html5/constraint_validation/index.html)4
3 files changed, 11 insertions, 11 deletions
diff --git a/files/ja/_redirects.txt b/files/ja/_redirects.txt
index 3f377fb2a2..eec5e5b9f7 100644
--- a/files/ja/_redirects.txt
+++ b/files/ja/_redirects.txt
@@ -3922,7 +3922,7 @@
/ja/docs/Web/Guide/HTML/Forms/Styling_HTML_forms /ja/docs/Learn/Forms/Styling_web_forms
/ja/docs/Web/Guide/HTML/Forms/The_native_form_widgets /ja/docs/Learn/Forms/Basic_native_form_controls
/ja/docs/Web/Guide/HTML/HTML5 /ja/docs/orphaned/Web/Guide/HTML/HTML5
-/ja/docs/Web/Guide/HTML/HTML5/Constraint_validation /ja/docs/orphaned/Web/Guide/HTML/HTML5/Constraint_validation
+/ja/docs/Web/Guide/HTML/HTML5/Constraint_validation /ja/docs/Web/Guide/HTML/Constraint_validation
/ja/docs/Web/Guide/HTML/HTML5/Forms_in_HTML5 /ja/docs/Learn/Forms
/ja/docs/Web/Guide/HTML/HTML5/HTML5_Thematic_Classification /ja/docs/orphaned/Web/Guide/HTML/HTML5
/ja/docs/Web/Guide/HTML/HTML5/HTML5_element_list /ja/docs/Web/HTML/Element
@@ -3988,7 +3988,7 @@
/ja/docs/Web/HTML/Forms/The_native_form_widgets /ja/docs/Learn/Forms/Basic_native_form_controls
/ja/docs/Web/HTML/Forms_in_HTML /ja/docs/Learn/Forms/HTML5_input_types
/ja/docs/Web/HTML/HTML5 /ja/docs/orphaned/Web/Guide/HTML/HTML5
-/ja/docs/Web/HTML/HTML5/Constraint_validation /ja/docs/orphaned/Web/Guide/HTML/HTML5/Constraint_validation
+/ja/docs/Web/HTML/HTML5/Constraint_validation /ja/docs/Web/Guide/HTML/Constraint_validation
/ja/docs/Web/HTML/HTML5/Forms_in_HTML5 /ja/docs/Learn/Forms/HTML5_input_types
/ja/docs/Web/HTML/HTML5/HTML5_Thematic_Classification /ja/docs/orphaned/Web/Guide/HTML/HTML5
/ja/docs/Web/HTML/HTML5/HTML5_element_list /ja/docs/Web/HTML/Element
diff --git a/files/ja/_wikihistory.json b/files/ja/_wikihistory.json
index 7864628295..6b69f1f1ac 100644
--- a/files/ja/_wikihistory.json
+++ b/files/ja/_wikihistory.json
@@ -33603,6 +33603,13 @@
"Marsf"
]
},
+ "Web/Guide/HTML/Constraint_validation": {
+ "modified": "2020-10-16T13:41:03.752Z",
+ "contributors": [
+ "mfuji09",
+ "Uemmra3"
+ ]
+ },
"Web/Guide/HTML/Content_categories": {
"modified": "2020-10-18T10:43:23.129Z",
"contributors": [
@@ -49667,13 +49674,6 @@
"Marsf"
]
},
- "orphaned/Web/Guide/HTML/HTML5/Constraint_validation": {
- "modified": "2020-10-16T13:41:03.752Z",
- "contributors": [
- "mfuji09",
- "Uemmra3"
- ]
- },
"orphaned/Web/Guide/HTML/HTML5/Introduction_to_HTML5": {
"modified": "2020-01-19T16:30:15.396Z",
"contributors": [
diff --git a/files/ja/orphaned/web/guide/html/html5/constraint_validation/index.html b/files/ja/web/guide/html/constraint_validation/index.html
index a392493e50..5af2e0fe58 100644
--- a/files/ja/orphaned/web/guide/html/html5/constraint_validation/index.html
+++ b/files/ja/web/guide/html/constraint_validation/index.html
@@ -1,13 +1,13 @@
---
title: 制約検証
-slug: orphaned/Web/Guide/HTML/HTML5/Constraint_validation
+slug: Web/Guide/HTML/Constraint_validation
tags:
- CSS
- Guide
- HTML5
- NeedsContent
- Selectors
-translation_of: Web/Guide/HTML/HTML5/Constraint_validation
+translation_of: Web/Guide/HTML/Constraint_validation
original_slug: Web/Guide/HTML/HTML5/Constraint_validation
---
<p>ウェブフォームの作成は常に複雑な作業でした。フォーム自体をマークアップすること自体は簡単ですが、それぞれの入力欄が妥当で一貫しているかどうかをチェックすることはもっと難しく、問題をユーザーに伝えることは頭痛がするかもしれません。<a href="/ja/docs/Web/Guide/HTML/HTML5">HTML5</a> では、フォームに新しい仕組みが導入されました。{{ HTMLElement("input") }} 要素に意味を持つ新しい型と、クライアント側でフォームの内容をチェックする作業を簡単にする<em>制約検証</em>が追加されました。基本的な、よくある制約は、JavaScript を必要とせずに、新しい属性を設定することでチェックできます。もっと複雑な制約は<a href="/ja/docs/Web/API/Constraint_validation">制約検証 API</a> を使用して検査することができます。</p>