我是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;
答案 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"
.jqCronGetInstance()
ussage在示例6的官方文档中可见:http://arnapou.net/tech-js/jquery-jqcron/