简体   繁体   中英

How to set hour and minute using javascript for plugin

Hi i am trying to give fix hours and minutes to the html view trying to modify the plugin but having issue with changes

This is my plugin code

(function ($) {
$.extend($.ui, { timepicker: { version: "0.3.3"} });
var PROP_NAME = 'timepicker',
tpuuid = new Date().getTime();

And Now i am tring to set the default hour default to Zero(0) and the minute to the 30 How can i do that...? this is what i have tried:

tpuuid = new Date().getTime();
tpuuid.setHours(0);
tpuuid.setMinutes(30);

but is is saying like tpuuid is not a funtion... how can resolve this isssue.. thanks for help.

THIS IS PLUGIN SOURCE : CLICK HERE TO SEE THE PLUGIN

Change your code From

tpuuid = new Date().getTime();
tpuuid.setHours(0);
tpuuid.setMinutes(30);

to

tpuuid = new Date();
tpuuid.setHours(0);
tpuuid.setMinutes(30);

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM