我在Drupal中有这个表单,其中包含两个日期选择器和两个文本字段。我需要编写一个更新两个文本字段中的值的函数。所以在textfield first_result我需要添加35天,在textfield second_result我需要添加3个月并在两个文本字段中设置这些值,并在datepicker due_date中我需要更新此字段以添加一年和45天:
我的代码:
<?php
drupal_add_js(drupal_get_path('module', 'Date') .'/script.js');
function Pregnancy_menu() {
$items['form/Date'] = array(
'title' => 'Date Calculator',
'page callback' => 'drupal_get_form',
'page arguments' => array('Date_form'),
'access callback' => TRUE,
);
return $items;
}
function Date_form($form_type) {
drupal_add_js(drupal_get_path('module', 'Date') .'/script.js');
$form['First_Period'] = array(
'#type' => 'date_popup',
'#title' => 'Date of your last menstrual period',
'#date_format' => 'Y-m-d',
'#date_text_parts' => array('year'),
'#date_increment' => 30,
'#date_year_range' => '-1:0',
'#default_value' => date(Y) . date(M) . date(D),
);
$form['Calculate_Forward'] = array(
'#type' => 'button',
'#value' => t('Calculate Forward'),
'#attributes' => array('onclick' => "testing()"),
);
$form['Reset_form'] = array(
'#name' => 'clear',
'#type' => 'button',
'#value' => t('Reset this Form'),
'#attributes' => array('onclick' => 'this.form.reset(); return false;'),
);
$form['First_result'] = array(
'#type' => 'textfield',
'#title' => t('first result'),
'#prefix' => '<div style="float:left;">',
'#suffix' => '</div>',
'#default_value' => 'Hello',
);
$form['Second_result'] = array(
'#type' => 'textfield',
'#title' => t('second result'),
'#prefix' => '<div style="float:left;">',
'#suffix' => '</div>',
);
$form['Due_Date'] = array(
'#type' => 'date_popup',
'#title' => 'Estimated Due Date',
'#date_format' => 'Y-m-d',
'#date_text_parts' => array('year'),
'#date_increment' => 30,
'#date_year_range' => '+1:+1',
'#default_value' => date(Y) . date(M) . date(D),
);
return $form;
}
// javascript函数script.js
var testing()=function()
{
//how to do the calculation here
}
答案 0 :(得分:0)
这取决于你月份的含义?你一年的意思是什么?
如果是1月31日,则添加3个月是添加3组30天(平均月份),或者将月份值增加3次,使其成为4月31日(不存在)。
按年份表示添加365天或2004年2月29日 - &gt; 2005年2月29日(第二次不存在)。
日期操作有一些荒谬的边界情况,所以你真的需要定义你打算做什么。最简单的解决方案是只使用几天然后将其转换为毫秒,然后将其添加到当前日期valueOf()然后转换回日期:
function addDays( fromDate, numDays ) {
var millisecondsInDay = 1000 * 60 * 60 * 24;
return new Date( fromDate.valueOf() + (millisecondsInDay * numDays) );
}