如何在 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>

更新于: 2020 年 6 月 15 日

484 次阅读

开启您的 职业生涯

通过完成课程来获得认证

开始学习
广告