window.open("file")
を使用すると、ファイルを新しいタブとして開きます。私はすでに.load
を試しましたが、どちらもうまくいきません。 htmlファイルが実行中のウィンドウに直接ロードされるという私の問題を解決する方法を知っているかもしれませんか?javascript条件の後にファイルを読み込む
function progress() {
var prg = document.getElementById('progress');
var percent = document.getElementById('percentCount');
var counter = 5;
var progress = 25;
var id = setInterval(frame, 64);
function frame() {
if (counter == 100) {
clearInterval(id);
window.open("welcome.html")
}
else {
progress += 5;
counter += 1;
prg.style.width = progress + 'px';
percent.innerHTML = counter + '%';
}
}
}
progress();
可能な複製を参照してください。代わりに
window.open("welcome.html");
の
window.location.assign("welcome.html");
を使用することができますhttps://stackoverflow.com/questions/8454510/open-同じウインドウと同じタブ内にあるURL) – Durga