codeigniter 中选择下拉菜单中的 $js
我在js文件夹中有一个js。我在标题中调用该文件。
我认为下一个代码是:
<?php echo form_dropdown('mydropdown',$options) ?>
我需要传递参数 $js,你能帮我解决语法吗?
$js = 'id="shirts" onChange="display(this,\'id1\',\'id2\');"';
<?php echo form_dropdown('mydropdown',$options, $js) ?>
当我看到下拉菜单的源代码时,我看不到 id="shirts",那么我相信函数 javascript 未被识别。
我的错误是什么。我的codeigniter版本是2.0。
谢谢。
I have a js in a folder js. I call the file in the header.
I have the next code in my view:
<?php echo form_dropdown('mydropdown',$options) ?>
I need to pass the paramether $js, could you help me with the syntax?
$js = 'id="shirts" onChange="display(this,\'id1\',\'id2\');"';
<?php echo form_dropdown('mydropdown',$options, $js) ?>
When I see the source code of my dropdown I can't see the id="shirts", then I believe that the function javascript is not recognized.
What's my error. My codeigniter version is 2.0.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
javascript 应该是此调用的第四 参数。因此,在第三个参数(用于下拉列表中选定的值)中添加一个
null
参数:http://ellislab.com/codeigniter/user_guide/helpers/form_helper.html
javascript should be the fourth parameter to this call. So add a
null
parameter in the third (which is for the selected value of the dropdown):http://ellislab.com/codeigniter/user_guide/helpers/form_helper.html