我有这个代码,我只想在某个特定日期出现。这个代码在Firefox,Chrome甚至Safari中运行得很好。但是代码不适用于IE。我不知道为什么。
我发现IE中的.toLocaleString()用空格而不是逗号分隔它们。
function givingTuesdayCode(){
var isIE = /*@cc_on!@*/false || !!document.documentMode;
var now = calcTime(-6);
var splitnow = "";
if ( isIE ){ splitnow = now.split(" "); }
else{ splitnow = now.split(","); }
if (splitnow[0] == "12/2/2014"){
$('.introrotation').html("<img style='width:100%; height:auto' class='givingTuesday' src='/graphics/PoliticGov_620x265.jpg' alt='Give to us'/> <a href='http://IllinoisState.edu/GivingTuesday' class='GiveButtonLink'>Giving Tuesday: Join us!</a> <p style='color:black; position:relative; top:-85px; margin:10px'>Black Friday and Cyber Monday have come and gone. Today, join your fellow Redbirds and make a gift that matters. Give today at <a href='http://IllinoisState.edu/GivingTuesday' class='GiveLink'>IllinoisState.edu/GivingTuesday</a></p>");
$('.introrotation').css({'height': '265px'
});
$('.toggleButton').css({'display': 'none'
});
}
function calcTime(offset){
var date = new Date();
var utc = date.getTime()+(360*60000);
var nd = new Date(utc+(3600000*offset));
return nd.toLocaleString();
}
答案 0 :(得分:2)
不要试图将日期与特定字符串(可能在其他语言环境中断)相匹配,而是直接比较特定日期:
// Reset the hours, minutes, etc. so that comparison works
var today = (new Date()).setHours(0, 0, 0, 0);
// Month is zero-indexed (i.e. 0 = Jan, 11 = Dec)
var specificDate = (new Date(2014, 11, 2)).getTime();
if (today === specificDate) {
$('.introrotation').html("<img style='width:100%; height:auto' class='givingTuesday' src='/graphics/PoliticGov_620x265.jpg' alt='Give to us'/> <a href='http://IllinoisState.edu/GivingTuesday' class='GiveButtonLink'>Giving Tuesday: Join us!</a> <p style='color:black; position:relative; top:-85px; margin:10px'>Black Friday and Cyber Monday have come and gone. Today, join your fellow Redbirds and make a gift that matters. Give today at <a href='http://IllinoisState.edu/GivingTuesday' class='GiveLink'>IllinoisState.edu/GivingTuesday</a></p>");
$('.introrotation').css({'height': '265px'});
$('.toggleButton').css({'display': 'none'});
}
有关比较日期的详情,请参阅Compare two dates with JavaScript。
理想情况下,您应该在服务器端而不是在客户端执行此操作,以便在禁用JavaScript的浏览器中仍显示您的消息。