标签:style blog java color 使用 文件
日历代码:
<link rel="stylesheet" type="text/css" href="calendar/jscal2.css"/> <link rel="stylesheet" type="text/css" href="calendar/border-radius.css"/> <link rel="stylesheet" type="text/css" href="calendar/win2k.css"/> <script type="text/javascript" src="calendar/calendar.js"></script> <script type="text/javascript" src="calendar/lang/en.js"></script> <tr> <th>上线时间 :</th> <td><input type="text" name="subject[fromdate]" id="fromdate" value="" size="10" class="date" readonly> <script type="text/javascript"> Calendar.setup({ weekNumbers: true, inputField : "fromdate", trigger : "fromdate", dateFormat: "%Y-%m-%d", showTime: false, minuteStep: 1, onSelect : function() {this.hide();} }); </script></td> </tr> <tr> <th>下线时间 :</th> <td><input type="text" name="subject[todate]" id="todate" value="" size="10" class="date" readonly> <script type="text/javascript"> Calendar.setup({ weekNumbers: true, inputField : "todate", trigger : "todate", dateFormat: "%Y-%m-%d", showTime: false, minuteStep: 1, onSelect : function() {this.hide();} }); </script></td> </tr>
在IE下报Calendar未定义:
Calendar.setup({
weekNumbers: ‘.$showweek.‘,
inputField : "‘.$id.‘",
trigger : "‘.$id.‘",
dateFormat: "‘.$format.‘",
showTime: ‘.$showsTime.‘,
minuteStep: 1,
onSelect : function() {this.hide();}
});
改成:
$(function(){
Calendar.setup({
weekNumbers: ‘.$showweek.‘,
inputField : "‘.$id.‘",
trigger : "‘.$id.‘",
dateFormat: "‘.$format.‘",
showTime: ‘.$showsTime.‘,
minuteStep: 1,
onSelect : function() {this.hide();}
});
});
PHPCMS里的日历插件及在IE下报Calendar未定义,布布扣,bubuko.com
标签:style blog java color 使用 文件
原文地址:http://www.cnblogs.com/thinksasa/p/3825602.html