HTML DOM 输入电子邮件类型属性
HTML DOM 输入电子邮件类型属性返回/设置输入电子邮件的类型。
语法
以下是语法 -
- 返回字符串值
inputEmailObject.type
- 将 type 设置为字符串值
inputEmailObject.type = stringValue
字符串值
此处,“stringValue”可以是以下内容 -
stringValue | 详情 |
---|---|
它定义输入类型为电子邮件 | |
datetime-local | 它定义输入类型为 datetime-local |
radio | 它定义输入类型为单选按钮 |
tel | 它定义输入类型为 tel,并且显示数字键盘以供输入 |
示例
让我们看一个 输入电子邮件类型 属性的示例 -
<!DOCTYPE html> <html> <head> <title>Input Email type</title> <style> form { width:70%; margin: 0 auto; text-align: center; } * { padding: 2px; margin:5px; } input[type="button"] { border-radius: 10px; } </style> </head> <body> <form> <fieldset> <legend>Email-type</legend> <label for="EmailSelect"></label> <input type="email" id="EmailSelect" > <input type="button" onclick="getTypeOfInput()" value="What to enter?"> </fieldset> </form> <script> var labelSelect = document.querySelector("label"); var inputEmail = document.getElementById("EmailSelect"); function getTypeOfInput() { labelSelect.innerHTML = inputEmail.type.toUpperCase()+' ID: '; } </script> </body> </html>
输出
这将产生以下输出 -
在单击 ‘What to enter?’ 按钮之前 -
单击 ‘What to enter?’ 按钮之后 -
广告