开发者问题收集

Microsoft JScript 运行时错误:无法获取属性“toLowerCase”的值:对象为空或未定义

2013-06-25
5676

Microsoft JScript runtime error: Unable to get value of the property 'toLowerCase': object is null or undefined

//--Customer Reviews
//--Display when current locale is EN-US
var IsReviewable = $(".tab-content-doc:eq(2) span")[0].innerText || $(".tab-content-doc:eq(2) span")[0].textContent;
if (IsReviewable.toLowerCase() == "true" && currentLocale()=="en-us" ) {            
   $("ul.tabs li").eq(2).show();
   $("#BVRRSummaryContainer").show();            
}   

我尝试执行代码,但出现了此错误。它提供了三个选项:中断、继续和忽略。如果我继续,则不会显示客户评论,但如果我忽略,则显示客户评论。我需要显示客户评论。我该怎么做?它在 Internet Explorer 9 上运行。 有什么建议吗?

1个回答

将您的条件更改为

if (IsReviewable &&  IsReviewable.toLowerCase() == "true" && currentLocale()=="en-us" ) 

这将确保值不为假,然后才应用 toLowerCase 方法

Sushanth --
2013-06-25