小书签不会重定向
Bookmarklet will not redirect
我正在尝试制作一个小书签,它将让我登录到我的 canvas 并在加载后转到缩放页面
这是我的代码:
This will log in the user into canvas
|
V
javascript:void(location.href='https://pccsk12.instructure.com/login/saml');
setTimeout(()=>{void(location.href='https://pccsk12.instructure.com/courses/9645/external_tools/184');},10000);
^
|
This will switch to the zoom page after everything has loaded
但是没用。它登录但在 10 秒后不重定向。
我的代码有什么问题?
当您第一次使用 location.href
切换页面时,它会导航到新页面并卸载所有当前 运行 Javascript,包括超时。您可以尝试使用 window.open
在新选项卡中打开登录页面,这样它就不会覆盖当前选项卡。它看起来像这样:
javascript:(function(){
var login = window.open('https://pccsk12.instructure.com/login/saml');
setTimeout(() => {login.location.href = 'https://pccsk12.instructure.com/courses/9645/external_tools/184';}, 10000);
})();
我正在尝试制作一个小书签,它将让我登录到我的 canvas 并在加载后转到缩放页面
这是我的代码:
This will log in the user into canvas | V javascript:void(location.href='https://pccsk12.instructure.com/login/saml');
setTimeout(()=>{void(location.href='https://pccsk12.instructure.com/courses/9645/external_tools/184');},10000); ^ | This will switch to the zoom page after everything has loaded
但是没用。它登录但在 10 秒后不重定向。 我的代码有什么问题?
当您第一次使用 location.href
切换页面时,它会导航到新页面并卸载所有当前 运行 Javascript,包括超时。您可以尝试使用 window.open
在新选项卡中打开登录页面,这样它就不会覆盖当前选项卡。它看起来像这样:
javascript:(function(){
var login = window.open('https://pccsk12.instructure.com/login/saml');
setTimeout(() => {login.location.href = 'https://pccsk12.instructure.com/courses/9645/external_tools/184';}, 10000);
})();