jQuery方法在字符串中查找字符?

时间:2012-12-11 03:17:45

标签: javascript jquery methods

这是我的舌头,但我不记得我将用于扫描字符串变量的方法,如特定字符。因此,例如,我想检查IF var emailaddress CONTAINS'@'符号。谁能给我一些帮助?


从头开始,indexOf就是我的想法。

2 个答案:

答案 0 :(得分:4)

你的意思是indexOf。

var email = 'abc@gmail.com';

if(email.indexOf('@')!=-1){
//doLogic
}

答案 1 :(得分:-1)

中的

jQuery(function($){
//if the input type email contains the @
if( $('input[type="email"]:contains("@")') )
{

alert( $(this).val() ); 

}
else ...

});