我有这个倒计时
(function($){
var options = {
display_as_text : false,
remaining : 0,
separator : ':',
significant_days : 3,
display_on_complete : null, // id of element to display when countdown is complete
hide_on_complete : null // hide the timer once it hits zero
};
$.fn.countdown = function (config_options)
{
/*
* Initialise
*
* Prepare data and trigger regular execution of code
*
* @param container Reference to DOM element where counter will be displayed
*/
var initialise = function (container){
}
var update = function (seconds_remaining){
}
我需要访问更新并根据我发送的值重置时间,但我不知道如何访问它。这是我实例化插件的方式
$('#timer').countdown({remaining : 1000});
但是我如何调用更新来更新秒...我试图将它设置为一个变量并调用它但没有去...任何想法