gpt4 book ai didi

javascript - document.createElement : el. 大小 = "2%"不工作

转载 作者:行者123 更新时间:2023-11-29 18:27:59 25 4
gpt4 key购买 nike

我正在使用以下内容:

el = doc.createElement("input");
el.size = "2%";

我收到错误消息(在 Firebug 中):Index or size is negative or greater than the allowed amount

当我只是注入(inject) HTML 而不是正确构建 DOM 时,它工作正常,如下所示:

$rsc.html("<input name = 'myName' type = 'text' value = '" + myVariable + "' size = '2%' />");

为什么它不接受带有 createElement 的 2%

谢谢

最佳答案

size 属性只接受整数,不接受百分比。它表示允许在输入中键入的最大字符数。如果你把它放在你的 HTML 中,可能会忽略 % 并且该值被解析为 2。

如果需要调整输入的宽度,那么可以使用style='width:2%'

关于javascript - document.createElement : el. 大小 = "2%"不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11154577/

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