我刚看到这个用过 if(data.match('success')!= null)
我在网上看了api,但它只是显示数据我不确定我猜它正常的javascript是什么匹配?
答案 0 :(得分:2)
假设data
是一个字符串,match方法通常用于从正则表达式中检索匹配,虽然看起来你可以使用普通的字符串参数,在这种情况下它将返回该字符串如果可以找到,则在数组中,否则null
。
实施例
var foo = 'This is a string that has the word success in it';
foo.match('success'); // returns ["success"]
foo.match('foo'); // returns null