克隆选择小部件

发布于 2024-12-26 07:20:46 字数 459 浏览 0 评论 0原文

我需要一个选择小部件来更改字符串小部件。例如,当在选择小部件中选择某个项目时,文本小部件中的背景颜色会发生变化。当更改第一个文本小部件以在第二个文本小部件中更改背景颜色但不使用选择小部件时,我可以使其工作。这是在 Plone 4.1 上。这是代码:

jq(document).ready(function(){
    jq("input[name= textwidget]").ready(function(){
        jq("input[name= textwidget]").css("background-color","red");
    });
    jq("input[name= selectionwidget]").change(function(){
        jq("input[name= textwidget]").css("background-color","green");
     });
});

I need a selection widget to change a string widget. For example, when an item is selected in the selection widget, the background in the text widget changes color. I can get this to work when a first text widget is changed to get the background color to change in a second text widget but not using a selection widget. This is on Plone 4.1. Here is the code:

jq(document).ready(function(){
    jq("input[name= textwidget]").ready(function(){
        jq("input[name= textwidget]").css("background-color","red");
    });
    jq("input[name= selectionwidget]").change(function(){
        jq("input[name= textwidget]").css("background-color","green");
     });
});

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

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

发布评论

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

评论(1

花开半夏魅人心 2025-01-02 07:20:46

也许是因为选择小部件是 标记。
你应该尝试这个:

jq(document).ready(function(){
    ...
    jq("select[name= selectionwidget]").change(function(){
        jq("input[name= textwidget]").css("background-color","green");
     });
});

Maybe because a selection widget is a <select> tag and not an <input> tag.
You should try this:

jq(document).ready(function(){
    ...
    jq("select[name= selectionwidget]").change(function(){
        jq("input[name= textwidget]").css("background-color","green");
     });
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文