codeigniter form_radio问题

发布于 2024-10-10 03:09:44 字数 328 浏览 4 评论 0原文

您好,我想在 codeigniter 中使用 form_radio,并且我希望选择第一个,但是我该怎么做?,我现在有这个

<div style="float:left;">Dreng:</div> <?php echo form_radio('dreng', '1', true, 'class=radio'); ?> 
<div style="float:left;">Pige:</div> <?php echo form_radio('pige', '2', false, 'class=radio'); ?> 

Hello i want to use the form_radio in codeigniter, and i want the first to be selected, but how can i do that ?, i have this now

<div style="float:left;">Dreng:</div> <?php echo form_radio('dreng', '1', true, 'class=radio'); ?> 
<div style="float:left;">Pige:</div> <?php echo form_radio('pige', '2', false, 'class=radio'); ?> 

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

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

发布评论

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

评论(2

月朦胧 2024-10-17 03:09:44

你必须给它一个默认打开的理由。如果您在创建页面上调用此 HTML,请使用缺少 $_POST 作为默认标志。

<div style="float:left;">Dreng:</div> <?php echo form_radio('dreng', '1', empty($_POST), 'class=radio'); ?> 
<div style="float:left;">Pige:</div> <?php echo form_radio('pige', '2', false, 'class=radio'); ?> 

You have to give it a reason to default to on. If you are calling this HTML on a create page, use the lack of $_POST as a sign to default.

<div style="float:left;">Dreng:</div> <?php echo form_radio('dreng', '1', empty($_POST), 'class=radio'); ?> 
<div style="float:left;">Pige:</div> <?php echo form_radio('pige', '2', false, 'class=radio'); ?> 
冰雪之触 2024-10-17 03:09:44

这两个单选按钮属于同一组吗?听起来好像是的!如果是这样,那么您必须使用相同的 name 字段:

<div style="float:left;">Dreng:</div> <?php echo form_radio('group_name', '1', true, 'class=radio'); ?> 
<div style="float:left;">Pige:</div> <?php echo form_radio('group_name', '2', false, 'class=radio'); ?> 

Are these two radio buttons belong to the same group? it sounds like they are! if so then you have to use the same name field:

<div style="float:left;">Dreng:</div> <?php echo form_radio('group_name', '1', true, 'class=radio'); ?> 
<div style="float:left;">Pige:</div> <?php echo form_radio('group_name', '2', false, 'class=radio'); ?> 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文