gpt4 book ai didi

html - 使文本框适应文本的宽度

转载 作者:行者123 更新时间:2023-11-28 02:01:55 25 4
gpt4 key购买 nike

是否可以仅使用 CSS 来使输入文本扩展或收缩到文本的宽度?

最佳答案

仅使用 CSS 是不可能的,您需要为此使用一些 jQuery,因为 -

function resizeInput() {
$(this).attr('size', $(this).val().length+1);
}

$('input[type="text"]').keyup(resizeInput).each(resizeInput);

Working Demo

关于html - 使文本框适应文本的宽度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13549187/

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