How to completly disable back button of a browser while taking online exam?

前端 未结 6 853
醉话见心
醉话见心 2020-12-15 11:46

In online examination once candidate has clicks on start button i dont want to allow him to go back (to previous pages) and he should be in same page if he do any activities

6条回答
  •  醉梦人生
    2020-12-15 12:50

    Try in your page following function to prevent unloading of form.

    $(window).on('beforeunload', function(){
          return false;
    });
    

    Or try unload function and prevent unloading of current page silently.

提交回复
热议问题