在单个 cfselect 绑定中运行多个函数

发布于 2024-09-19 06:37:05 字数 426 浏览 4 评论 0原文

我尝试在 cfselect 绑定执行后运行 JavaScript 函数。我有什么办法可以实现这一目标吗?这是我的声明。

cfselect name="artType" id="artType" size="1" query="qArtType" display="the_value" value="id"

cfselect id="allValues" name="allValues" multiple="true" bindonload=" true"bind="cfc:art.getArt({artType})" size="10" style="width: 100%;"

第一个选择“artType”驱动第二个选择“allValues”。

我想在绑定执行后调用 JavaScript 函数。它被称为listAll()。我有什么办法可以做到这一点吗? 谢谢。

I am try to run a javascript function after my cfselect bind has executed. Is there any way I can achieve that? Here is my statement.

cfselect name="artType" id="artType" size="1" query="qArtType" display="the_value" value="id"

cfselect id="allValues" name="allValues" multiple="true" bindonload="true" bind="cfc:art.getArt({artType})" size="10" style="width: 100%;"

The first select "artType" drives the second select "allValues".

I want to call a javascript function once my bind has executed. It is called listAll(). Is there any way I can do this.
Thanks.

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

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

发布评论

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

评论(1

是伱的 2024-09-26 06:37:05

据我所知,你将无法做到这一点。您可能会尝试绑定到处理 ajax 调用的 javascript 函数,但这肯定会增加您要编写的代码量。如果您愿意的话,这可能会让您走上正轨此处。这也使用 jquery 来处理 ajax 调用。

As far as I know, you will not be able to do that. You might try and bind to a javascript function that handles the ajax call, but it certainly adds to the amount of code you'll be writing. This might put you on the right track if you're willing to do that here. This also uses jquery to handle the ajax call..

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