我使用日历来选择两种类型的铭文的日期 对于第一个启用的所有日子,仅启用第二个星期日 如果代码是这样我怎么能使用正确的
if ($type==12){ daysOfWeekDisabled:[1,2,3,4,5,6],}
请某人帮帮我
这是我的代码
$('#op_calender_inscription').datepicker({
format: "dd/mm/yyyy",
<?php if($operation->start !='00/00/0000'): ?>
startDate: '<?php echo $operation->start ?>',
if ($type == 12)
{daysOfWeekDisabled:[1,2,3,4,5,6],}
<?php
endif;
if($operation->end !='00/00/0000'): ?>
endDate: '<?php echo $operation->end ?>',
<?php endif; ?>
multidate: true,
multidateSeparator:";",
calendarWeeks: true,
language: 'fr'
答案 0 :(得分:0)
您正在使用PHP吗?然后:
<?php if ($type == 12) : ?>
{daysOfWeekDisabled:[1,2,3,4,5,6],}
<?php endif; ?>