不同浏览器下的GetElqContentPersonalizationValue函数

时间:2012-06-06 19:46:07

标签: javascript internet-explorer firefox google-chrome opera

我有以下代码:

if (typeof GetElqContentPersonalizationValue == 'function') {

  var downloads = (GetElqContentPersonalizationValue('whitepapers'));
  alert("downloads:"+downloads);
  if (downloads == 0)     {
    location.href = '/forms/whitepaper.html?retURL=' + retURL;
  } else {
    // some other location
  }
}

它在Firefox,Chrome和Opera下运行良好,当您下载更多白皮书时,下载变量会增加。但在Internet Explorer中,下载始终为0 有没有什么需要做的,所以IE会看到下载变量增加?

谢谢,

0 个答案:

没有答案