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.
我使用这个时间选择器是因为我需要选择分钟和秒,而 iPhone 时间选择器会自动弹出“时间”输入,只提供分钟/小时控制。当我使用 jquery timepicker 时,如何防止本地时间选择器弹出?
试试这个: $('input[type="time"]').bind('focus', function(e) {e.preventDefault(); });