gpt4 book ai didi

javascript - 没有 JQuery 的全屏文本区域

转载 作者:搜寻专家 更新时间:2023-11-01 05:03:39 26 4
gpt4 key购买 nike

如何在没有 Jquery 或任何库的情况下制作全屏文本区域?

let el = document.getElementById('#t')

const fullScrenn = () => {
//there way to do that .
}
<textarea id="el" cols="30" rows="10"></textarea>

<button onclick="fullScrenn()">Full Screen</button>

enter image description here

最佳答案

'use strict';
document.querySelector('#myButton').addEventListener('click', () => {
document.querySelector('#myTextarea').style.width="100vw";
document.querySelector('#myTextarea').style.height="100vh";
});
<textarea id="myTextarea" cols="20" rows="20"></textarea>
<button id="myButton">Full Size</button>

只需将 textarea 的宽度和高度设置为 100vw(屏幕宽度)和 100vh(屏幕高度) ).

或者,您可以使用 window.innerWidthwindow.innerHeight 代替这些值。

关于javascript - 没有 JQuery 的全屏文本区域,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44325682/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com