Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个<input type="number">我想要的移动设备上的数字键盘。
<input type="number">
我需要在 javascript/jquery 中获取这个值,通常只是$element.val().
$element.val()
只要该字段包含一个数字[0-9]*,它就可以工作,但如果它包含一个破折号“-”,我根本不会得到任何值。
[0-9]
我怎样才能获得价值?,或者我可以使用<input type="text">; 但仍然强制移动设备使用数字键盘?
<input type="text">