我的代码不起作用。我做错了什么?
function christmas(){
var today = new Date();
var day = today.getDate();
var month = today.getMonth()+1;
if(day>=0 && month=12){
var script = document.createElement('script');
script.src = "files/snowstorm.js";
document.getElementsByTagName('head')[0].appendChild(script);
}
}
答案 0 :(得分:6)
您正在条件if(day>=0 && month=12)
中进行作业。 month === 12
代替month=12
。