如何使用 cakePHP 内置 FORM 帮助器生成文本和隐藏文本框
我正在使用 cakePHP 1.26。我很抱歉问这个问题,但我不知道如何使用 cakePHP 内置 FORM 助手来生成如下两个代码:
<input type="text" name="data[Test][quote]" id="data[Test][quote]" size="12" style="font-family:Arial" value="helloworld" readonly>
<input type="hidden" name="data[Test][quote]" id="data[Test][quote]" value="helloworld">
你能帮我吗?
I am using cakePHP 1.26. I am sorry to ask this question, but I couldn't work out how to use the cakePHP built-in FORM helper to generate the code like these two:
<input type="text" name="data[Test][quote]" id="data[Test][quote]" size="12" style="font-family:Arial" value="helloworld" readonly>
<input type="hidden" name="data[Test][quote]" id="data[Test][quote]" value="helloworld">
Could you help me please?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这个:
如果您将它们放在同一页面上,并具有相同的名称,请确保将隐藏的输入放在文本之前。这样,如果有人在字段中输入内容,文本输入将覆盖隐藏的输入。
Try this:
If you're putting them both on the same page, with the same name, make sure to put the hidden input before the text. That way the text input will override the hidden input if someone enters something in the field.