codeigniter form_radio问题
您好,我想在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你必须给它一个默认打开的理由。如果您在创建页面上调用此 HTML,请使用缺少 $_POST 作为默认标志。
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.
这两个单选按钮属于同一组吗?听起来好像是的!如果是这样,那么您必须使用相同的
name
字段: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: