检查外部URL是否包含字符串

时间:2017-03-01 01:57:29

标签: jquery html

我试图在我的网站上添加一个功能,我可以在其中添加一个按钮&它会尝试从外部URL /不同的网站查找字符串。

我有这个

$(document).ready(function () {
if(document.URL("URL").contains('Limit reached') {
   alert("msghere");
else
   alert("msghere");
}

});

但这似乎不起作用。

1 个答案:

答案 0 :(得分:0)

空间在网址中表示为%20。请尝试以下

$(document).ready(function () {
  if(document.URL("URL").contains('Limit%20reached') {
     alert("found");
  else
     alert("not found");
  }