就是网上最流行的那个日历,想在节日中加入链接,其中有这段代码,该怎么修改: ...... 
//农历节日 *表示放假日 
var lFtv = new Array( 
"0101*春节", 
"0102*初二", 
"0103*初三", 
"0115 元宵节", 
"0505 端午节", 
"0707 七夕情人节", 
"0715 中元节", 
"0815 中秋节", 
"0909 重阳节", 
"1208 腊八节", 
"1223 小年", 
"0100 除夕") 
...... ...... 
//农历节日 
for(i in lFtv) 
if(lFtv[i].match(/^(\d{2})(.{2})([\s\*])(.+)$/)) { 
tmp1=Number(RegExp.$1)-firstLM; 
if(tmp1==-11) tmp1=1; 
if(tmp1 >=0 && tmp1<n) { 
tmp2 = lDPOS[tmp1] + Number(RegExp.$2) -1; 
if( tmp2 >= 0 && tmp2<this.length && this[tmp2].isLeap!=true) { 
this[tmp2].lunarFestival += RegExp.$4 + ' '; 
if(RegExp.$3=='*') this[tmp2].color = 'red'; 



...... 完整源代码:http://www.kkey.cn/serve/attach/wnl/wnl.htm