timepicker

授权协议 未知
开发语言
所属分类 jQuery 插件、 其他jQuery插件
软件类型 开源软件
地区 不详
投 递 者 潘高洁
操作系统 未知
开源组织
适用人群 未知
 软件概览

This is a fairly simple jQuery plugin that replaces a single text input with a set of pulldown menus to select hour, minute, and am/pm. Minute selections are for quarter hours (:00, :15, :30, :45).

If the original input contains a time value in the format "hh:mmpp" (i.e., "06:30pm"), it will set the pulldown menus to the correct corresponding values. Otherwise it will default to the current time. Minute values are always rounded up to the next quarter hour.

The original input is updated whenever any of the pulldown menus change, so there is no need to change anything else in your HTML form. The plugin can be used safely to convert multiple inputs on the same page.

Options could easily be added for additional time formats or to change the minute increments (say, to every 5 minutes, for instance).

Usage is simple. Given a plain text form input like this:

<input class="time" type="text" name="start" id="start" />

You would transform it into a timepicker like so:

$('input.time').timepicker();

  • Add a simple datetimepicker to jQuery UI's datepicker $('#basic_example_1').datetimepicker(); Add only a timepicker: $('#basic_example_2').timepicker(); Format the time: $('#basic_example_3').datetime

 相关资料
  • 问题内容: 我将以下内容作为条目: 选择后,将打开a并允许用户选择时间。这是如何做: 第一次选择时,将成功打开TimePickerDialog并显示所选的时间,但是当我再次选择它或再次单击它时,什么也没有发生! 我不知道为什么! 请让我知道无论选择或单击多少次,如何打开TimePickerDialog并选择时间。 问题答案: 跟着这些步骤: 创建一个自定义微调器类 在您的活动中创建 将侦听器对象添

  • 本文向大家介绍angular bootstrap timepicker TypeError提示怎么办,包括了angular bootstrap timepicker TypeError提示怎么办的使用技巧和注意事项,需要的朋友参考一下 angular bootstrap timepicker TypeError: Cannot set property '$render' of undefined

  • 本文向大家介绍仿Angular Bootstrap TimePicker创建分钟数-秒数的输入控件,包括了仿Angular Bootstrap TimePicker创建分钟数-秒数的输入控件的使用技巧和注意事项,需要的朋友参考一下 在一个项目中需要一个用来输入分钟数和秒数的控件,然而调查了一些开源项目后并未发现合适的控件。在Angular Bootstrap UI中有一个类似的控件TimePick

  • 本文向大家介绍详解Android中提示对话框(ProgressDialog和DatePickerDialog和TimePickerDialog&PopupWindow),包括了详解Android中提示对话框(ProgressDialog和DatePickerDialog和TimePickerDialog&PopupWindow)的使用技巧和注意事项,需要的朋友参考一下 ProgressDialog

  • 我创建了,它启动了一个片段,用于启动TimePickerDialog。我想检索AJOUTPATROUILLEFRAGMENT类中的函数中的时间,但有一个我找不到的错误。请你看着。 这是我的DialogFragment中的TimePickerDialog类

  • 我遇到了麻烦,而试图设置一个准确的警报,只有时间选择器。我设置了一个带有如下处理程序的时间选择器: 计时器 不幸的是,当这样做时,警报会立即播放。我也试过用am.setalarmclock但是我不知道如何用它来使用RTC时间,你能帮我吗? 我已经读了很多线程,就像我正在尝试设置警报在特定的时间使用警报管理器,但警报立即启动?并从DatePicker和TimePicker中设置AlarmManage

  • 我有一个表单,它首先加载文本字段,并有一个与之关联的时间选择器。用户还可以单击“更多”按钮,该按钮动态加载下面的额外文本字段。这也有一个与之相关联的时间选择器,但是它不会加载到动态字段上。我正在使用Trent Richardson的jQuery timepicker插件http://trentrichardson.com/examples/timepicker 我还找到了以前的答案(https:/

  • 我正在使用rails的bootstrap-timepicker,并且在表单帮助器中使用它。如果只有一个实例,它就会工作得很好。下面是一段代码片段: 但是,当一个页面中有多个实例时,它就不起作用了。基本上,我有多个动态数据行,每行都需要一个时间选择器,我找到的示例很简单,有一个唯一的输入id和相应的JavaScript。 有没有人知道我如何使它变得动态,或者知道有什么例子可以证明这一点?