使用indexOf来实现。当返回值为-1时表示不存在。
举例:
var href = 'www.51qdq.com';alert(href.indexOf('test')); //返回值 -1alert(href.indexOf('www')); //返回值 0alert(href.indexOf('51qdq')); //返回值 4