如何在 HTML 中使用 telephone 输入类型?
telephone 输入类型在 HTML 中使用 <input type="tel">。使用此类型,允许用户添加电话号码。
注意 - 输入类型 tel 仅在 Safari 中受支持。
示例
你可以尝试运行以下代码,了解如何使用输入类型 tel 让用户输入电话号码 -
<!DOCTYPE html> <html> <head> <title>HTML input search</title> </head> <body> <form action = "" method = "get"> Details:<br><br> Student Name<br><input type = "name" name = "sname"><br> Student Telephone<br> <input type = "tel" name = "telephone"><br> <input type = "submit" value = "Submit"> </form> </body> </html>
广告