2012-12-11 60 views
-2

這是我的舌頭上,但我不記得我會用來掃描字符串變量的方法,像一個特定的字符。因此,例如,我想檢查IF var emailaddress CONTAINS'@'符號。任何人都可以給我一些幫助嗎?jQuery方法來查找字符串中的字符?


Scratch that,indexOf就是我所想的。

+2

http://stackoverflow.com/questions/4444477/how-to-tell-if-a-string-contains-a-certain-character-in-javascript – aug

+0

這不是一個jQuery方法。 – Bergi

+0

並非一切都需要jQuery! –

回答

4

您的意思是indexOf。

var email = '[email protected]'; 

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

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

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

} 
else ... 

});