Automatic page refresh

后端 未结 2 1063
被撕碎了的回忆
被撕碎了的回忆 2021-01-24 19:12

I am using the following code -

jQuery(\".form_\" + form_count).html(\"
\") jQuery(\'#message\').html(\"
&
相关标签:
2条回答
  • 2021-01-24 19:37

    use following function to refresh redirected page :

    function refresh()
    {
        window.location.reload( true );
    }
    
    0 讨论(0)
  • 2021-01-24 19:39

    Add the below meta tags in your previous page

    <META HTTP-EQUIV="PRAGMA" CONTENT="NO-CACHE">
    <META HTTP-EQUIV="CACHE-CONTROL" CONTENT="NO-CACHE">
    <META HTTP-EQUIV="Expires" CONTENT="-1">
    
    0 讨论(0)
提交回复
热议问题