//try{
var week =new Array
('星期日',
'星期一',
'星期二',
'星期三',
'星期四',
'星期五',
'星期六',
'星期日');
var now = new Date();
var nl = new Lunar(now);
// var ss = nl.cDate + " " + nl.cYear + "年 " + nl.cMonth + "月 " + nl.cDay + "日 生肖:" + nl.animal + " " + nl.term;
var ss = "" + nl.cYear + "(" + nl.animal +")年"
+ "" + nl.monthStr + "月"
+ "" + nl.dayStr+ "" + nl.term;
ss = "" + now.getYear() +"年"
+ "" + (now.getMonth()+1) +"月"
+ "" + now.getDate() + "日 | "
+ week[now.getDay()] + " | " + ss;
// ss = now.toLocaleDateString() + ss;
// $("lunarDate").innerHTML = "【今日黄历】:" + ss + " >>查看更多";
document.getElementById("lunarToday").innerHTML = "" + ss + "";
//}catch(e){alert(e.Message)}