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