EPISODE 42

第42话:变形金刚

Input 标签学会了七十二变,想要什么形态都有!

🎨
我想让用户选个颜色,但是不想让他们背十六进制代码 #FFFFFF,头秃啊!
🦎
看我的!<input type="color"> 变身!
<label for="favcolor">选个颜色:</label> <input type="color" id="favcolor" name="favcolor" value="#ff0000">
📅
那选日期和调节音量呢?
🤖
简单!daterange 来帮忙!
<!-- 日期选择器 --> <label for="birthday">生日:</label> <input type="date" id="birthday" name="birthday"> <!-- 滑动条 --> <label for="vol">音量 (0-50):</label> <input type="range" id="vol" name="vol" min="0" max="50">

📧
还有更多变身形态吗?
🧙‍♂️
当然!email, url, search, tel... 只有你想不到,没有它变不了!
<input type="email" placeholder="请输入邮箱"> <input type="url" placeholder="请输入网址"> <input type="number" min="1" max="10" placeholder="数字 1-10">