我需要检查推荐人是否有单词“profile”,我需要将 profile/(.*?) 放在 var 中。我怎么能在js中做到这一点?
<script type="text/javascript">
var ref = document.referrer;
if( ~ref.indexOf("profile") ) {
alert('coincidence found!');
}
</script>
我需要检查推荐人是否有单词“profile”,我需要将 profile/(.*?) 放在 var 中。我怎么能在js中做到这一点?
<script type="text/javascript">
var ref = document.referrer;
if( ~ref.indexOf("profile") ) {
alert('coincidence found!');
}
</script>
<script>
var str="Is this all there is?";
var patt1=/[^a-h]/g;
document.write(str.match(patt1));
</script>
结果:I,s, ,t,i,s, ,l,l, ,t,r, ,i,s,?
检查链接 [^abc] 表达式用于查找不在括号内的任何字符。
这也是链接
var ref = document.referrer;
ref.match(/(?:profile).+/,(match)=> {
console.log(match)
})