我有一个函数,将动态window.open()
到一个特定的资源。我想删除"关于:空白",而出现的网页加载和显示加载消息。
有可能吗?
下面是我的函数:
const windowReference = window.open();
try {
AppProductAuthenticationApi.getUrlAccess(apuaId, query).then((res: {urlAccess: string} | undefined | null) => {
if (res && res.urlAccess) {
windowReference &&
(windowReference.location = `${res.urlAccess}${
null !== queryString && typeof queryString !== "undefined" ? queryString : ""
}`);
} else {
windowReference && windowReference.close();
}
});
}
1条答案
按热度按时间kknvjkwl1#
是的,您可以删除“about:blank”页面,并在页面加载时显示加载消息。以下是您可以执行此操作的一种方法:
向新窗口的load事件添加事件侦听器。
在事件侦听器函数内部,可以使用windowReference.document属性访问新窗口的document对象: