您好,登录后才能下订单哦!
密码登录
登录注册
点击 登录注册 即表示同意《亿速云用户服务条款》
在TypeScript中使用window.location
对象和在JavaScript中使用它是一样的。window.location
对象包含当前窗口的URL信息,可以用来获取和设置当前页面的URL。
下面是一些常见的用法:
const currentUrl: string = window.location.href;
console.log(currentUrl);
window.location.href = "https://example.com";
const protocol: string = window.location.protocol;
const host: string = window.location.host;
const pathname: string = window.location.pathname;
const search: string = window.location.search;
const hash: string = window.location.hash;
console.log(protocol);
console.log(host);
console.log(pathname);
console.log(search);
console.log(hash);
window.location.reload();
需要注意的是,在TypeScript中使用window.location
对象时,应该确保window
对象已经定义。可以通过使用window
对象的类型断言来避免编译器报错:
const location = (window as any).location;
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。