-1

これを少なくとも 10 回確認し、コード行に問題が見つからないにもかかわらず、このエラー メッセージが表示されます。

Microsoft JScript compilation error '800a03ee'

Expected ')'

/functions.asp, line 153

if(    (   (
                (arrStory[i]['Date']).substr( (arrStory[i]['Date'])00.length - 4)
            ) 
            == intYear
        ) 
        || 
        (
            (arrStory[i]['Date']).substr(   (arrStory[i]['Date']).length - 4) == (intYear + 1)
        )
  )
--------------------------------------------------------^
4

1 に答える 1

2

これは何ですか:

arrStory[i]['Date'])00.length

意味するはず?それは有効な JScript ではありません... これらのゼロは、偽の余分な文字のように見えます。

于 2013-05-27T11:07:35.187 に答える