> **Possible Duplicate:**
> [JavaScript: string contains](https://stackoverflow.com/questions/1789945/javascript-string-contains)
> [Jquery: How to see if string contains substring](https://stackoverflow.com/questions/3480771/jquery-how-to-see-if-string-contains-substring)
In ASP .NET C# I use:
string aa = "aa bb";
if (aa.Contains("aa"))
{
//Some task
}
I want to same thing in client side means in JQuery. Something like below:
var aa = "aa bb";
if(aa. -----want help here){
}
Is there any method to do this?
以上就是Equivalent of ASP's .Contains method的详细内容,更多请关注web前端其它相关文章!