我正在使用以下jquery插件在我的web應用程序中啓用全屏。爲什麼textarea在全屏模式下無法編輯?
https://github.com/martinaglv/jQuery-FullScreen
它的偉大工程,只是當我在全屏模式下我的textarea不能編輯?爲什麼是這樣?這是一個瀏覽器的東西或插件?
它似乎沒有以任何方式禁用...
我的測試代碼如下:
<!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>
+1您的線條確實允許您在Chrome中輸入文字 –
會給這個提示... – shenku