IE7 regex issue - Regex that work in every browser does not work in ie7
问题 I have a regex validating a password value to be > 6 < 25 characters with at least one number. var passwordRegEx = /^(?=.*\d)(?=.*[a-zA-Z]).{6,25}$/; if(!#quickRegister_Password').val().test(pass)) { errorMgs += 'Your password must be at least 6 characters and have at least 1 number and 1 letter.\r\n'; } It works in Firefox, Chrome, IE8 (IE7 ran from compatability in IE8) but not IE7 standalone. 回答1: I think you have run into the regular expression lookahead bug in IE7's javascript engine.