克隆选择小部件
我需要一个选择小部件来更改字符串小部件。例如,当在选择小部件中选择某个项目时,文本小部件中的背景颜色会发生变化。当更改第一个文本小部件以在第二个文本小部件中更改背景颜色但不使用选择小部件时,我可以使其工作。这是在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
也许是因为选择小部件是
标记。
你应该尝试这个:
Maybe because a selection widget is a
<select>
tag and not an<input>
tag.You should try this: