I have 3 textboxes that I am trying to do some validation that all 3 values match. I have a simple function:
function DoesSubsriberSignatureMatch() {
return tbNameOfSubscriber.GetText() == tbSubscriberSig1.GetText() == tbSubscriberReEnter.GetText();
}
I stepped through with the debugger, and it seems in Javascript in Chrome at least, "a"=="a" returns true, but "a"=="a"=="a" returns false.
Why?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…