HTML5 中的输入类型 URL
在 HTML5 中只能接受 URL 值。此类型用于包含 URL 地址的输入字段。如果你尝试提交简单的文本,那么它会强制输入 URL 地址,格式为 http://www.qries.com 或 http://qries.com 。
<!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>
广告