Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个可能在标签页中运行的 facebook 应用程序。如果用户没有登录,它会显示一个登录按钮。如果用户从另一个窗口/选项卡登录,我希望窗口自动刷新。知道我该怎么做吗?
我会在 javascript 中创建一个函数来检查用户是否已登录,如果已登录则刷新页面。假设我调用了这个函数checkIfUserIsLoggedIn(),然后我会把这个函数放在一个间隔中,setInterval("checkIfUserIsLoggedIn()", intervalTime); 这样你就可以让页面每 10 秒检查一次用户是否登录,如果是,让它刷新。
checkIfUserIsLoggedIn()
setInterval("checkIfUserIsLoggedIn()", intervalTime);