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.
我正在使用 jQuery Mobile 构建搜索对话。搜索的输入是数字的,所以理想情况下我想添加一个“类型”的搜索和数字。这可能吗?如果没有,是否有一个简单的解决方法?
您不能声明type两次,但可以使用模式:
type
<input type="search" pattern="[0-9]*">
它仍处于试验阶段,因此请确保添加额外的(jQuery 和/或服务器端)验证。