aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/learn/forms
diff options
context:
space:
mode:
authorFlorian Merz <me@fiji-flo.de>2021-02-11 12:56:53 +0100
committerFlorian Merz <me@fiji-flo.de>2021-02-11 12:56:53 +0100
commitfc56124ac4eda6b3f0349c8a16fa750f27b4c7d6 (patch)
tree7089f49c5dcc5428f29711439ab79ac387caf44f /files/zh-cn/learn/forms
parent310fd066e91f454b990372ffa30e803cc8120975 (diff)
downloadtranslated-content-fc56124ac4eda6b3f0349c8a16fa750f27b4c7d6.tar.gz
translated-content-fc56124ac4eda6b3f0349c8a16fa750f27b4c7d6.tar.bz2
translated-content-fc56124ac4eda6b3f0349c8a16fa750f27b4c7d6.zip
unslug zh-cn: modify
Diffstat (limited to 'files/zh-cn/learn/forms')
-rw-r--r--files/zh-cn/learn/forms/advanced_form_styling/index.html3
-rw-r--r--files/zh-cn/learn/forms/basic_native_form_controls/index.html3
-rw-r--r--files/zh-cn/learn/forms/form_validation/index.html3
-rw-r--r--files/zh-cn/learn/forms/how_to_build_custom_form_controls/example_1/index.html3
-rw-r--r--files/zh-cn/learn/forms/how_to_build_custom_form_controls/example_2/index.html3
-rw-r--r--files/zh-cn/learn/forms/how_to_build_custom_form_controls/example_3/index.html3
-rw-r--r--files/zh-cn/learn/forms/how_to_build_custom_form_controls/example_4/index.html3
-rw-r--r--files/zh-cn/learn/forms/how_to_build_custom_form_controls/index.html3
-rw-r--r--files/zh-cn/learn/forms/how_to_structure_a_web_form/index.html3
-rw-r--r--files/zh-cn/learn/forms/html_forms_in_legacy_browsers/index.html3
-rw-r--r--files/zh-cn/learn/forms/index.html3
-rw-r--r--files/zh-cn/learn/forms/property_compatibility_table_for_form_controls/index.html3
-rw-r--r--files/zh-cn/learn/forms/sending_and_retrieving_form_data/index.html3
-rw-r--r--files/zh-cn/learn/forms/sending_forms_through_javascript/index.html3
-rw-r--r--files/zh-cn/learn/forms/styling_web_forms/index.html3
-rw-r--r--files/zh-cn/learn/forms/your_first_form/index.html3
16 files changed, 32 insertions, 16 deletions
diff --git a/files/zh-cn/learn/forms/advanced_form_styling/index.html b/files/zh-cn/learn/forms/advanced_form_styling/index.html
index 94128b7229..7add8a555f 100644
--- a/files/zh-cn/learn/forms/advanced_form_styling/index.html
+++ b/files/zh-cn/learn/forms/advanced_form_styling/index.html
@@ -1,7 +1,8 @@
---
title: 高级设计 HTML 表单
-slug: Learn/HTML/Forms/Advanced_styling_for_HTML_forms
+slug: Learn/Forms/Advanced_form_styling
translation_of: Learn/Forms/Advanced_form_styling
+original_slug: Learn/HTML/Forms/Advanced_styling_for_HTML_forms
---
<div>{{LearnSidebar}}{{PreviousMenuNext("Learn/HTML/Forms/Styling_HTML_forms", "Learn/HTML/Forms/Property_compatibility_table_for_form_widgets", "Learn/HTML/Forms")}}</div>
diff --git a/files/zh-cn/learn/forms/basic_native_form_controls/index.html b/files/zh-cn/learn/forms/basic_native_form_controls/index.html
index 8ef67a2f7a..0f738f9d23 100644
--- a/files/zh-cn/learn/forms/basic_native_form_controls/index.html
+++ b/files/zh-cn/learn/forms/basic_native_form_controls/index.html
@@ -1,7 +1,8 @@
---
title: 原生表单部件
-slug: Learn/HTML/Forms/The_native_form_widgets
+slug: Learn/Forms/Basic_native_form_controls
translation_of: Learn/Forms/Basic_native_form_controls
+original_slug: Learn/HTML/Forms/The_native_form_widgets
---
<div>{{LearnSidebar}}</div>
diff --git a/files/zh-cn/learn/forms/form_validation/index.html b/files/zh-cn/learn/forms/form_validation/index.html
index 62758a26e6..0cdfdd07f1 100644
--- a/files/zh-cn/learn/forms/form_validation/index.html
+++ b/files/zh-cn/learn/forms/form_validation/index.html
@@ -1,9 +1,10 @@
---
title: 表单数据校验
-slug: Learn/HTML/Forms/Data_form_validation
+slug: Learn/Forms/Form_validation
tags:
- HTML
translation_of: Learn/Forms/Form_validation
+original_slug: Learn/HTML/Forms/Data_form_validation
---
<p>{{LearnSidebar}}{{PreviousMenuNext("Learn/HTML/Forms/Sending_and_retrieving_form_data", "Learn/HTML/Forms/How_to_build_custom_form_widgets", "Learn/HTML/Forms")}}</p>
diff --git a/files/zh-cn/learn/forms/how_to_build_custom_form_controls/example_1/index.html b/files/zh-cn/learn/forms/how_to_build_custom_form_controls/example_1/index.html
index 93cf5069c2..b2bfa229e8 100644
--- a/files/zh-cn/learn/forms/how_to_build_custom_form_controls/example_1/index.html
+++ b/files/zh-cn/learn/forms/how_to_build_custom_form_controls/example_1/index.html
@@ -1,10 +1,11 @@
---
title: Example 1
-slug: Learn/HTML/Forms/How_to_build_custom_form_widgets/Example_1
+slug: Learn/Forms/How_to_build_custom_form_controls/Example_1
tags:
- HTML
- 表单
translation_of: Learn/Forms/How_to_build_custom_form_controls/Example_1
+original_slug: Learn/HTML/Forms/How_to_build_custom_form_widgets/Example_1
---
<p>这是第一个<a href="/en-US/docs/Web/Guide/HTML/Forms/How_to_build_custom_form_widgets">如果构建自定义表单小部件</a>的代码解释事例。</p>
diff --git a/files/zh-cn/learn/forms/how_to_build_custom_form_controls/example_2/index.html b/files/zh-cn/learn/forms/how_to_build_custom_form_controls/example_2/index.html
index 3a9546631f..e102e1a313 100644
--- a/files/zh-cn/learn/forms/how_to_build_custom_form_controls/example_2/index.html
+++ b/files/zh-cn/learn/forms/how_to_build_custom_form_controls/example_2/index.html
@@ -1,10 +1,11 @@
---
title: Example 2
-slug: Learn/HTML/Forms/How_to_build_custom_form_widgets/Example_2
+slug: Learn/Forms/How_to_build_custom_form_controls/Example_2
tags:
- HTML
- 表单
translation_of: Learn/Forms/How_to_build_custom_form_controls/Example_2
+original_slug: Learn/HTML/Forms/How_to_build_custom_form_widgets/Example_2
---
<p>这是解释 <a href="/en-US/docs/HTML/Forms/How_to_build_custom_form_widgets" title="/en-US/docs/HTML/Forms/How_to_build_custom_form_widgets">如何构建自定义表单小部件</a>的第二个示例。</p>
diff --git a/files/zh-cn/learn/forms/how_to_build_custom_form_controls/example_3/index.html b/files/zh-cn/learn/forms/how_to_build_custom_form_controls/example_3/index.html
index a4a58880e4..d17136e128 100644
--- a/files/zh-cn/learn/forms/how_to_build_custom_form_controls/example_3/index.html
+++ b/files/zh-cn/learn/forms/how_to_build_custom_form_controls/example_3/index.html
@@ -1,10 +1,11 @@
---
title: Example 3
-slug: Learn/HTML/Forms/How_to_build_custom_form_widgets/Example_3
+slug: Learn/Forms/How_to_build_custom_form_controls/Example_3
tags:
- HTML
- 表单
translation_of: Learn/Forms/How_to_build_custom_form_controls/Example_3
+original_slug: Learn/HTML/Forms/How_to_build_custom_form_widgets/Example_3
---
<p>这是解释 <a href="https://developer.mozilla.org/en-US/docs/HTML/Forms/How_to_build_custom_form_widgets" title="/en-US/docs/HTML/Forms/How_to_build_custom_form_widgets">如何构建自定义表单小部件</a> 的第三个示例。</p>
diff --git a/files/zh-cn/learn/forms/how_to_build_custom_form_controls/example_4/index.html b/files/zh-cn/learn/forms/how_to_build_custom_form_controls/example_4/index.html
index 472102adb2..0219ad6218 100644
--- a/files/zh-cn/learn/forms/how_to_build_custom_form_controls/example_4/index.html
+++ b/files/zh-cn/learn/forms/how_to_build_custom_form_controls/example_4/index.html
@@ -1,12 +1,13 @@
---
title: Example 4
-slug: Learn/HTML/Forms/How_to_build_custom_form_widgets/Example_4
+slug: Learn/Forms/How_to_build_custom_form_controls/Example_4
tags:
- HTML
- Web
- 表单
- 高级
translation_of: Learn/Forms/How_to_build_custom_form_controls/Example_4
+original_slug: Learn/HTML/Forms/How_to_build_custom_form_widgets/Example_4
---
<p>这是解释 <a href="/en-US/docs/Learn/HTML/Forms/How_to_build_custom_form_widgets">如何构建自定义表单小部件</a> 的第四个示例。</p>
diff --git a/files/zh-cn/learn/forms/how_to_build_custom_form_controls/index.html b/files/zh-cn/learn/forms/how_to_build_custom_form_controls/index.html
index 24636e7858..7ee2617b1d 100644
--- a/files/zh-cn/learn/forms/how_to_build_custom_form_controls/index.html
+++ b/files/zh-cn/learn/forms/how_to_build_custom_form_controls/index.html
@@ -1,12 +1,13 @@
---
title: 如何构建表单小工具
-slug: Learn/HTML/Forms/How_to_build_custom_form_widgets
+slug: Learn/Forms/How_to_build_custom_form_controls
tags:
- HTML
- 例子
- 表单
- 高级
translation_of: Learn/Forms/How_to_build_custom_form_controls
+original_slug: Learn/HTML/Forms/How_to_build_custom_form_widgets
---
<div>{{LearnSidebar}}{{PreviousMenuNext("Learn/HTML/Forms/Form_validation", "Learn/HTML/Forms/Sending_forms_through_JavaScript", "Learn/HTML/Forms")}}</div>
diff --git a/files/zh-cn/learn/forms/how_to_structure_a_web_form/index.html b/files/zh-cn/learn/forms/how_to_structure_a_web_form/index.html
index eda4b201da..341d533fc9 100644
--- a/files/zh-cn/learn/forms/how_to_structure_a_web_form/index.html
+++ b/files/zh-cn/learn/forms/how_to_structure_a_web_form/index.html
@@ -1,7 +1,8 @@
---
title: 如何构造HTML表单
-slug: Learn/HTML/Forms/How_to_structure_an_HTML_form
+slug: Learn/Forms/How_to_structure_a_web_form
translation_of: Learn/Forms/How_to_structure_a_web_form
+original_slug: Learn/HTML/Forms/How_to_structure_an_HTML_form
---
<div>{{LearnSidebar}}</div>
diff --git a/files/zh-cn/learn/forms/html_forms_in_legacy_browsers/index.html b/files/zh-cn/learn/forms/html_forms_in_legacy_browsers/index.html
index d6045e0d70..914939e028 100644
--- a/files/zh-cn/learn/forms/html_forms_in_legacy_browsers/index.html
+++ b/files/zh-cn/learn/forms/html_forms_in_legacy_browsers/index.html
@@ -1,7 +1,8 @@
---
title: 旧式浏览器中的HTML 表单
-slug: Learn/HTML/Forms/HTML_forms_in_legacy_browsers
+slug: Learn/Forms/HTML_forms_in_legacy_browsers
translation_of: Learn/Forms/HTML_forms_in_legacy_browsers
+original_slug: Learn/HTML/Forms/HTML_forms_in_legacy_browsers
---
<div>{{LearnSidebar}}{{PreviousMenuNext("Learn/HTML/Forms/Sending_forms_through_JavaScript", "Learn/HTML/Forms/Styling_HTML_forms", "Learn/HTML/Forms")}}</div>
diff --git a/files/zh-cn/learn/forms/index.html b/files/zh-cn/learn/forms/index.html
index ad51eafa35..e4d6f79e6f 100644
--- a/files/zh-cn/learn/forms/index.html
+++ b/files/zh-cn/learn/forms/index.html
@@ -1,12 +1,13 @@
---
title: HTML表单指南
-slug: Learn/HTML/Forms
+slug: Learn/Forms
tags:
- Forms
- HTML
- NeedsTranslation
- TopicStub
translation_of: Learn/Forms
+original_slug: Learn/HTML/Forms
---
<div>{{LearnSidebar}}</div>
diff --git a/files/zh-cn/learn/forms/property_compatibility_table_for_form_controls/index.html b/files/zh-cn/learn/forms/property_compatibility_table_for_form_controls/index.html
index 31f8075f5b..2a30d40290 100644
--- a/files/zh-cn/learn/forms/property_compatibility_table_for_form_controls/index.html
+++ b/files/zh-cn/learn/forms/property_compatibility_table_for_form_controls/index.html
@@ -1,7 +1,8 @@
---
title: 表单组件兼容性列表
-slug: Learn/HTML/Forms/Property_compatibility_table_for_form_widgets
+slug: Learn/Forms/Property_compatibility_table_for_form_controls
translation_of: Learn/Forms/Property_compatibility_table_for_form_controls
+original_slug: Learn/HTML/Forms/Property_compatibility_table_for_form_widgets
---
<div>{{learnsidebar}}{{PreviousMenu("Learn/HTML/Forms/Advanced_styling_for_HTML_forms", "Learn/HTML/Forms")}}</div>
diff --git a/files/zh-cn/learn/forms/sending_and_retrieving_form_data/index.html b/files/zh-cn/learn/forms/sending_and_retrieving_form_data/index.html
index ed3a4ef0ef..21d9228dbb 100644
--- a/files/zh-cn/learn/forms/sending_and_retrieving_form_data/index.html
+++ b/files/zh-cn/learn/forms/sending_and_retrieving_form_data/index.html
@@ -1,6 +1,6 @@
---
title: 发送表单数据
-slug: Learn/HTML/Forms/Sending_and_retrieving_form_data
+slug: Learn/Forms/Sending_and_retrieving_form_data
tags:
- HTML
- HTTP
@@ -9,6 +9,7 @@ tags:
- 安全
- 表单
translation_of: Learn/Forms/Sending_and_retrieving_form_data
+original_slug: Learn/HTML/Forms/Sending_and_retrieving_form_data
---
<p>{{LearnSidebar}}{{PreviousMenuNext("Learn/HTML/Forms/The_native_form_widgets", "Learn/HTML/Forms/Form_validation", "Learn/HTML/Forms")}}</p>
diff --git a/files/zh-cn/learn/forms/sending_forms_through_javascript/index.html b/files/zh-cn/learn/forms/sending_forms_through_javascript/index.html
index 8489ff2243..6f3edf8801 100644
--- a/files/zh-cn/learn/forms/sending_forms_through_javascript/index.html
+++ b/files/zh-cn/learn/forms/sending_forms_through_javascript/index.html
@@ -1,6 +1,6 @@
---
title: 使用 JavaScript 发送表单
-slug: Learn/HTML/Forms/Sending_forms_through_JavaScript
+slug: Learn/Forms/Sending_forms_through_JavaScript
tags:
- HTML
- HTML表单
@@ -10,6 +10,7 @@ tags:
- 表单
- 高级
translation_of: Learn/Forms/Sending_forms_through_JavaScript
+original_slug: Learn/HTML/Forms/Sending_forms_through_JavaScript
---
<div>{{LearnSidebar}}{{PreviousMenuNext("Learn/HTML/Forms/How_to_build_custom_form_widgets", "Learn/HTML/Forms/HTML_forms_in_legacy_browsers", "Learn/HTML/Forms")}}</div>
diff --git a/files/zh-cn/learn/forms/styling_web_forms/index.html b/files/zh-cn/learn/forms/styling_web_forms/index.html
index 26b94e94e8..b72fd35d77 100644
--- a/files/zh-cn/learn/forms/styling_web_forms/index.html
+++ b/files/zh-cn/learn/forms/styling_web_forms/index.html
@@ -1,6 +1,6 @@
---
title: 样式化 HTML 表单
-slug: Learn/HTML/Forms/Styling_HTML_forms
+slug: Learn/Forms/Styling_web_forms
tags:
- CSS
- Web
@@ -9,6 +9,7 @@ tags:
- 样式
- 表单
translation_of: Learn/Forms/Styling_web_forms
+original_slug: Learn/HTML/Forms/Styling_HTML_forms
---
<p>{{LearnSidebar}}{{PreviousMenuNext("Learn/HTML/Forms/HTML_forms_in_legacy_browsers", "Learn/HTML/Forms/Advanced_styling_for_HTML_forms", "Learn/HTML/Forms")}}</p>
diff --git a/files/zh-cn/learn/forms/your_first_form/index.html b/files/zh-cn/learn/forms/your_first_form/index.html
index 5b0adc1480..ed7c3f1087 100644
--- a/files/zh-cn/learn/forms/your_first_form/index.html
+++ b/files/zh-cn/learn/forms/your_first_form/index.html
@@ -1,7 +1,8 @@
---
title: 创建我的第一个表单
-slug: Learn/HTML/Forms/Your_first_HTML_form
+slug: Learn/Forms/Your_first_form
translation_of: Learn/Forms/Your_first_form
+original_slug: Learn/HTML/Forms/Your_first_HTML_form
---
<p>{{LearnSidebar}}{{NextMenu("Learn/HTML/Forms/How_to_structure_an_HTML_form", "Learn/HTML/Forms")}}</p>