How can I refresh a tab from another using Javascript

后端 未结 3 518
迷失自我
迷失自我 2020-12-11 04:30

I\'m looking to achieve something like Wordpress does when you create a new post. It allows you to preview your post by opening a new tab. If, after that, you edit the post

3条回答
  •  庸人自扰
    2020-12-11 05:04

    If I remember correctly this is the way to do it:

    var win = window.open(url, "foobar");
    win.location.reload();
    

提交回复
热议问题