dojo 选择框,选择时触发事件

发布于 2025-01-07 04:49:42 字数 166 浏览 0 评论 0原文

您好,我正在使用 dojo 选择,我有一个文本框,在其中输入特定 ID,然后根据选择框中选择的内容执行操作。现在的问题是,假设在两个不同的请求中,操作保持相同,并且 id 发生变化,我无法使用 onChange 事件触发该函数。我该如何处理这个问题?即使用户打开选择框并选择与上次相同的项目,我也希望调用我编写的函数。

Hi I am using a dojo select, I have a text box where a certain ID is entered and then based on what is chosen on the select box an action is performed. Now the problem is, suppose over two different requests the action remains the same and the id changes I cant trigger the function with the onChange event. How do i handle this? Even if the user opens the select box and chooses the same item as last time I want the function i've written to be called.

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

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

发布评论

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

评论(1

月竹挽风 2025-01-14 04:49:42

当组合框的任何选项发生更改时, onchange 就会触发。在您的情况下,您没有更改选项,因此显然该事件不会触发。

您可以尝试使用onclick

onclick 中为 select 元素编写相同的代码(但是使用一些智能逻辑,因为即使在您能够选择任何在您的情况下可能不期望的选项之前,onclick 也会继续触发......!)。

onchange fires when any option is changed of the combo box.In your case you are not changing the options so obviously that event will not fired.

You can try onclick instead.

Write the same code in onclick for the select element (however with some intelligent logic since onclick will keep on firing even before you are able to select any option which may not expected in your case..!).

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