-
Notifications
You must be signed in to change notification settings - Fork 8.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
- Loading branch information
1 parent
589478b
commit 31cff91
Showing
1 changed file
with
10 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -58,7 +58,8 @@ l10n: | |
### email 输入 | ||
|
||
```html | ||
<label for="emails">想要将邮件发送给谁?</label><input | ||
<label for="emails">想要将邮件发送给谁?</label | ||
><input | ||
type="email" | ||
multiple | ||
name="emails" | ||
|
@@ -97,15 +98,17 @@ input:invalid { | |
```html | ||
<form method="post" enctype="multipart/form-data"> | ||
<p> | ||
<label for="uploads">选择要上传的图像:</label><input | ||
<label for="uploads">选择要上传的图像:</label | ||
><input | ||
type="file" | ||
id="uploads" | ||
name="uploads" | ||
accept=".jpg, .jpeg, .png, .svg, .gif" | ||
multiple /> | ||
</p> | ||
<p> | ||
<label for="text">选择要上传的文本文件:</label><input type="file" id="text" name="text" accept=".txt" /> | ||
<label for="text">选择要上传的文本文件:</label | ||
><input type="file" id="text" name="text" accept=".txt" /> | ||
</p> | ||
<p> | ||
<input type="submit" value="提交" /> | ||
|
@@ -126,7 +129,8 @@ input:invalid { | |
```html | ||
<form method="get" action="#"> | ||
<p> | ||
<label for="dwarfs">选择你喜欢的小矮人樵夫:</label><select multiple name="dwarfs" id="dwarfs"> | ||
<label for="dwarfs">选择你喜欢的小矮人樵夫:</label | ||
><select multiple name="dwarfs" id="dwarfs"> | ||
<option>[email protected]</option> | ||
<option>[email protected]</option> | ||
<option>[email protected]</option> | ||
|
@@ -137,7 +141,8 @@ input:invalid { | |
</select> | ||
</p> | ||
<p> | ||
<label for="favoriteOnly">选择你最喜欢的小矮人:</label><select name="favoriteOnly" id="favoriteOnly"> | ||
<label for="favoriteOnly">选择你最喜欢的小矮人:</label | ||
><select name="favoriteOnly" id="favoriteOnly"> | ||
<option>[email protected]</option> | ||
<option>[email protected]</option> | ||
<option>[email protected]</option> | ||
|