var url = decodeURI(location.search)//获取url中?后的字符串 decondeURI解码url
if (url.indexOf("指定网站") != -1) {
包含指定网站执行
}else{
不包含指定网站,不执行。
}
}
/^http:\/\/[A-Za-z0-9]+\.[A-Za-z0-9]+[\/=\?%\-&_~`@[\]\’:+!]*([^<>\"\"])*$/.test(‘你要判断字符串’)是url返回true
不是返回false