jquery没有封装字符串比较的方法。所以要用到原生JS的方法。用正则表达式很方更。
var reg = new RegExp( "abcd" );var str = "abcdef";reg.test( str ); // true