cakephp - 元素输入缺少我的表单中所需的属性alt - > end()

时间:2013-12-14 22:12:47

标签: cakephp

我正在使用cakephp v2.39并在w3.org网站的验证中出现此错误,但不知道如何解决它。 cakephp允许在$ this-> Form-> end('search.gif')中使用图像,或者只使用纯文本$ this-> form-> end('search')

<?php echo $this->Form->end('search.gif'); ?>

此代码生成的错误是缺少alt属性。

Line 75, Column 479: Element input is missing required attribute alt.
…><input type="image" src="/img/search_go.gif" /></div></form></div>

如何将这个alt =“搜索”'注入'到正确的位置,就像使用$ options一样,把它放在错误的位置并产生3个错误而不是我现在唯一的错误。

感谢您对此进行调查。

1 个答案:

答案 0 :(得分:1)

解决了,$ options是把它放在前面,但是下面的代码是完美和有效的。 Form-&gt; end(array('label'=&gt;'search.gif','alt'=&gt;'search')); ?&GT;