我有一个网络应用程序(目录幻灯片)程序,最好在@InitBinder
protected void initBinder(WebDataBinder binder) {
SimpleDateFormat dateFormat = new SimpleDateFormat("MM/dd/YYYY");
binder.registerCustomEditor(Date.class, new CustomDateEditor(
dateFormat, false));
}
全屏运行。现在问题是我想限制用户访问浏览器功能,所以当浏览器全屏时我想锁定它。
有没有办法做到这些?
答案 0 :(得分:4)
这通常被称为" Kiosk模式," Chrome确实支持它。来自https://lifehacker.com/use-chromes-kiosk-mode-to-limit-someones-access-to-yo-1243433249: