我正在使用以下 jquery 插件在我的网络应用程序中启用全屏。
https://github.com/martinaglv/jQuery-FullScreen
它工作得很好,除了当我处于全屏模式时我的文本区域不可编辑?为什么是这样?它是浏览器的东西还是插件?
它似乎没有以任何方式被禁用...
我的测试代码如下:
<!DOCTYPE html>
<html>
<head>
<title></title>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.1/jquery.min.js"></script>
<script type="text/javascript" src="https://raw.github.com/martinaglv/jQuery-FullScreen/master/fullscreen/jquery.fullscreen.js"></script>
</head>
<body>
<div id="content">
<textarea></textarea>
<button>
Go Go Fullscreen</button>
</div>
<script type="text/javascript">
(function () {
if ($.support.fullscreen) {
$('button').click(function (e) {
$('#content').fullScreen();
});
}
})();
</script>
</body>
</html>