gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-11-28 04:02:46 24 4
gpt4 key购买 nike

我是 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>

最佳答案

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

          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() 用法可以在官方文档的示例 6 中看到: http://arnapou.net/tech-js/jquery-jqcron/

关于javascript - 如何使用此 jQuery 插件返回 cron 值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46957392/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com