-1
現在,我只是在做下面我Auth0登錄 -如何檢查location.hash是否有`#access_token =`,如果有,請做些什麼?
if (location.hash) {
// do something
}
我如何確保它只會做到這一點時,它包括#access_token=
?
現在,我只是在做下面我Auth0登錄 -如何檢查location.hash是否有`#access_token =`,如果有,請做些什麼?
if (location.hash) {
// do something
}
我如何確保它只會做到這一點時,它包括#access_token=
?
像這樣使用indexOf
。
if(location.hash.indexOf("#access_token=" > -1) {
// Do stuff
}
您可以在indexOf
here上了解更多信息。