gpt4 book ai didi

javascript - 主干形式。 js 文档示例 : Onchange Populator: How can i hide the second select and show it after the change event?

转载 作者:行者123 更新时间:2023-11-29 22:17:01 26 4
gpt4 key购买 nike

这是我想从中学习的文档中的代码。在我看来,当更改事件被触发时,隐藏第二个选择并显示它会很酷。我尝试了一些功能注入(inject),但效果不佳。谁能给这个问题 2 美分?

(function($) {
var cities = {
'UK': ['London', 'Manchester', 'Brighton', 'Bristol'],
'USA': ['Washington DC', 'Los Angeles', 'Austin', 'New York']
};

//The form
var form1 = new Backbone.Form({
schema: {
country: { type: 'Select', options: ['UK', 'USA'] },
city: { type: 'Select', options: cities.UK },
message: { type: 'Text'}
}
}).render();

form1.on('country:change', function(form1, countryEditor) {
var country = countryEditor.getValue(),
newOptions = cities[country];
form1.fields.city.editor.setOptions(newOptions);

});

//Add it to the page
$('body').append(form1.el);
})(jQuery);

最佳答案

form1.fields['message'].$el.hide();

渲染后

form1.fields['消息'].$el.toggle();在 on change 函数中解决了这个问题。

(function($) {
var cities = {
'UK': ['London', 'Manchester', 'Brighton', 'Bristol'],
'USA': ['Washington DC', 'Los Angeles', 'Austin', 'New York']
};

//The form
var form1 = new Backbone.Form({
schema: {
country: { type: 'Select', options: ['UK', 'USA'] },
city: { type: 'Select', options: cities.UK },
message: {
//fieldAttrs: { style: 'width: 400px; height:300px;' },
type: 'TextArea',
fieldClass: 'message-input',
validators: [ 'required', /.{20,}/ ]
}
}
}).render();
**form1.fields['message'].$el.hide();**

*form1.on('country:change',* function(form1, countryEditor) {
var country = countryEditor.getValue(),
newOptions = cities[country];
form1.fields.city.editor.setOptions(newOptions);
**form1.fields['message'].$el.toggle();**
});

//Add it to the page
$('body').append(form1.el);
})(jQuery);

关于javascript - 主干形式。 js 文档示例 : Onchange Populator: How can i hide the second select and show it after the change event?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14589352/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com