5

我正在使用 joomla 2.5.8 和 2.0.6。在 w3 验证后,我收到以下错误:

属性类型为按钮的元素输入必须具有非空属性值<input type="button"class="quantity-controls quantity-minus" />。属性类型为按钮的元素输入必须具有非空属性值。

4

2 回答 2

8

您必须为按钮提供值属性。

<input type="button" id="myButton" value="Click Here" />

如果您不想在其中显示任何内容,请使用value="&#160;"

于 2013-06-03T09:43:38.283 回答
2

您可以尝试使用<button>标签。

<button type="button" id="myButton">Click</button>

它是 HTML5 的有效标记。如果您需要此按钮提交表单,您可以将类型更改为submit.

<button type="submit" id="myButton">Click</button>
于 2015-03-26T21:06:41.797 回答