codeigniter 中选择下拉菜单中的 $js

发布于 2024-12-17 09:42:48 字数 427 浏览 0 评论 0原文

我在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 技术交流群。

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

发布评论

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

评论(1

口干舌燥 2024-12-24 09:42:48

javascript 应该是此调用的第四 参数。因此,在第三个参数(用于下拉列表中选定的值)中添加一个 null 参数:

<?php echo form_dropdown('mydropdown',$options, null, $js) ?>

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):

<?php echo form_dropdown('mydropdown',$options, null, $js) ?>

http://ellislab.com/codeigniter/user_guide/helpers/form_helper.html

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