gpt4 book ai didi

javascript - 表数据宽度

转载 作者:行者123 更新时间:2023-11-28 21:25:18 26 4
gpt4 key购买 nike

我正在写an editor ,并希望输入字段为列的宽度。到目前为止,我已经:

$td.html('<input name="test" value="' + $td.text() + '" size="' + $td.width() + '">');

问题是:$td.width() 报告的是 80 和 25 等数字,但输入需要采用字符宽度。即使我的CSS说:

html {
font-size:20px;
}

我没有看到 $td.width() 和 size 属性之间有任何关系。您可能会认为它是 $td.width()/20。

最佳答案

来自 W3Schools http://www.w3schools.com/tags/att_input_size.asp

Since the size attribute is a visual design attribute, it is recommended to use CSS instead

$td.html('<input name="test" value="' + $td.text() + '" style="width: ' + $td.width() + '">');
// what does $td.width() return? with px? if not add 'px' or other required unit too.

关于javascript - 表数据宽度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5221106/

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