“Zero not added list” 翻译为中文是 “零未添加列表”。

huangapple go评论104阅读模式
英文:

Zero not added list

问题

"<input type="text" valueType="int" columnDef="2" itemIndex="9.1" placeHolder="15岁以下儿童数量" operation="compare(s9i1,lt)">0"

这里必须是零

它应该在列表中是零,但它不是零。

英文:
&lt;input type=&quot;text&quot; valueType=&quot;int&quot; columnDef=&quot;2&quot; itemIndex=&quot;9.1&quot; placeHolder=&quot;the number of children under 15 years of age&quot; operation=&quot;compare(s9i1,lt)&quot;&gt;0&lt;/input&gt;

A zero must appear here

IT SHOULD BE ZERO ON THE LIST BUT IT DOES NOT COME ZERO

答案1

得分: 3

使用value属性。输入框不能有子元素:

<input type="text" value="0" valueType="int" columnDef="2" itemIndex="9.1" placeHolder="15岁以下儿童数量" operation="compare(s9i1,lt)"></input>
英文:

Use the value attribute. An input can not have a child element:

&lt;input type=&quot;text&quot; value=&quot;0&quot; valueType=&quot;int&quot; columnDef=&quot;2&quot; itemIndex=&quot;9.1&quot; placeHolder=&quot;the number of children under 15 years of age&quot; operation=&quot;compare(s9i1,lt)&quot;&gt;&lt;/input&gt;

huangapple
  • 本文由 发表于 2023年4月17日 16:53:32
  • 转载请务必保留本文链接:https://go.coder-hub.com/76033326.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定