我想知道是否可以通过type = range使用一个带有两个处理程序的输入而没有任何js代码?例如jquery编写的range滑块。
<input type="range" min="0" max="24" value="0" step="1" id="range"/>
答案 0 :(得分:0)
可以,可以这样做
<!DOCTYPE html>
<html>
<body>
<form action="/action_page.php">
Points: <input type="range" name="points" min="0" max="10">
<input type="submit">
</form>
</body>
</html>