英文:
Zero not added list
问题
"<input type="text" valueType="int" columnDef="2" itemIndex="9.1" placeHolder="15岁以下儿童数量" operation="compare(s9i1,lt)">0"
这里必须是零
它应该在列表中是零,但它不是零。
英文:
<input type="text" valueType="int" columnDef="2" itemIndex="9.1" placeHolder="the number of children under 15 years of age" operation="compare(s9i1,lt)">0</input>
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:
<input type="text" value="0" valueType="int" columnDef="2" itemIndex="9.1" placeHolder="the number of children under 15 years of age" operation="compare(s9i1,lt)"></input>
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论