这是我的舌头,但我不记得我将用于扫描字符串变量的方法,如特定字符。因此,例如,我想检查IF var emailaddress CONTAINS'@'符号。谁能给我一些帮助?
从头开始,indexOf就是我的想法。
答案 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 ...
});