Reload browser window after POST without prompting user to resend POST data

后端 未结 14 2067
盖世英雄少女心
盖世英雄少女心 2020-11-29 05:47

When a user visits my website there is a \"Login\" link on every page. Clicking this uses some JavaScript to show an overlay window where the user is prompted for their cred

14条回答
  •  悲&欢浪女
    2020-11-29 06:13

    When we want to refresh the parent page from the child page without any prompt.

    Here is the code:

    window.opener.location.href = window.opener.location;

    This simply refreshes the parent page without any prompt.

提交回复
热议问题