标签: javascript
现在,我正在为Auth0登录做以下事情 -
if (location.hash) { // do something }
如何确保只有#access_token=时才会执行此操作?
#access_token=
答案 0 :(得分:2)
像这样使用indexOf。
indexOf
if(location.hash.indexOf("#access_token=" > -1) { // Do stuff }
您可以在indexOf here上了解详情。