Codeigniter form_dropdown问题

发布于 2024-09-13 09:13:38 字数 342 浏览 7 评论 0原文

我需要一点帮助。

我认为

$salutation = array(
        'Mr.' => 'Mr.',
        'Mrs.' => 'Mrs.',
        'Dr.' => 'Dr.',
        );    

    echo form_open('membership/update');

    echo form_dropdown('Salutation', $salutation, 'Mrs.');

下拉菜单以除一种方式之外的所有方式工作,它不会预先选择“女士”。我怎样才能让它正常工作。根据 Codeigniter 用户指南,我有正确的语法。

I need a bit of help.

I have this in my view

$salutation = array(
        'Mr.' => 'Mr.',
        'Mrs.' => 'Mrs.',
        'Dr.' => 'Dr.',
        );    

    echo form_open('membership/update');

    echo form_dropdown('Salutation', $salutation, 'Mrs.');

The dropdown works in all but one fashion, it does not pre-select 'Mrs.'. How can I get that to work properly. According to the Codeigniter userguide, I have the proper syntax.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

玻璃人 2024-09-20 09:13:40

当您按F5 时,此更改不会出现在表单中。您需要在浏览器中按 URL 旁边的 Enter 键才能显示此类更改。

When you F5, this change will not appear in the form. You need to hit enter next to the URL in your browser for these kind of changes to appear.

莫言歌 2024-09-20 09:13:40

好消息!

我让它工作了。在cnanney说这对他有用后,我检查了firefox中的缓存,由于某种原因它是不久前的旧缓存,刷新和删除没有帮助。重新启动后,一切都很好。

谢谢!

Good News!

I got it to work. After cnanney said it worked for him, I checked the cache in firefox, for some reason it was old cache from a while ago, refreshing and deleting did not help. After a restart, things are good.

Thanks!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文