js中判断一个字符串包含另一个字符:
indexOf()函数:
var Cts = "bblText"; if(Cts.indexOf("Text") > -1){ alert('Cts中包含Text字符串'); }
如果包含则是大于-1的数。