如何检查location.hash是否有##access_token =`如果是,请做点什么?

时间:2016-07-04 20:49:37

标签: javascript

现在,我正在为Auth0登录做以下事情 -

if (location.hash) {
  // do something
}

如何确保只有#access_token=时才会执行此操作?

1 个答案:

答案 0 :(得分:2)

像这样使用indexOf

if(location.hash.indexOf("#access_token=" > -1) {
       // Do stuff
}

您可以在indexOf here上了解详情。