gpt4 book ai didi

html - 是否可以使输入类型数字适合其显示的数字宽度?

转载 作者:行者123 更新时间:2023-11-27 23:09:09 24 4
gpt4 key购买 nike

有没有可能做这样的事情:

.input[type=number] {
width: (width of the number inside of the input field)
}

最佳答案

用css做不到,用js实现很容易;

例如:

const input = document.querySelector('.myInput');

input.addEventListener('input', () => {
const inputNumber = input.value;

input.style.width = `${inputNumber}%`;
})
<input type="number" min="1" max="100" value="1"  class="myInput" />

关于html - 是否可以使输入类型数字适合其显示的数字宽度?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58625454/

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