如何使用此jQuery插件返回cron值

时间:2017-10-26 14:45:58

标签: javascript jquery cron

我是jQuery的新手,我如何获得设置的cron值? http://jqcron.arnapou.net/demo/# https://github.com/arnapou/jqcron



  $(function() {
    $('.example1').jqCron();
  });
  $('.example1').jqCron({
    callback: function(value) {
      console.log(value)
    }
  });

 <div class="example1"></div>
&#13;
&#13;
&#13;

1 个答案:

答案 0 :(得分:0)

您需要使用方法:.jqCronGetInstance()并存储返回的Object。 这个Object将提供有用的方法。

          var instanceOfCron = $('.example1')
            .jqCron(
              // configuration
              {
                enabled_minute: true,
                multiple_dom: true,
                multiple_month: true,
                multiple_mins: true,
                multiple_dow: true,
                multiple_time_hours: true,
                multiple_time_minutes: true,
                default_period: 'week',
                default_value: '15 10-12 * * 1-5',
                no_reset_button: false,
                lang: 'en'
              }
            )
            .jqCronGetInstance();

          console.log( instanceOfCron.getCron() ) // result: "15 10-12 * * 1-5"

enter image description here

.jqCronGetInstance() ussage在示例6的官方文档中可见:http://arnapou.net/tech-js/jquery-jqcron/