当前位置: 首页 > 文档资料 > HTML5 入门教程 >

url

优质
小牛编辑
124浏览
2023-12-01

它只接受URL值。 此类型用于应包含URL地址的输入字段。 如果您尝试提交简单文本,则会强制仅以http://www.example.com格式或http://example.com格式输入网址。

例子 (Example)

<!DOCTYPE HTML>
<html>
   <body>
      <form action = "/cgi-bin/html5.cgi" method = "get">
         Enter URL : <input type = "url" name = "newinput" />
         <input type = "submit" value = "submit" />
      </form>
   </body>
</html>