嗨,我的脚本中有这种形式,我可以解析脚本中的高度和宽度等选项值吗?还是在通过该脚本渲染后,我必须使用 jQuery 设置它的样式?
var form1 = new Backbone.Form({
schema: {
country: { type: 'Select', options: ['UK', 'USA'] },
city: { type: 'Select', options: cities.UK },
message: { type: 'Text'}
}
}).render();
可以使用
fieldAttrs
属性为元素设置任何属性:
country: {
type: 'Select',
options: ['UK', 'USA'],
fieldAttrs: { style: "width: 400px; height: 30px;" }
}
或者,您可以使用 fieldClass
属性提供 CSS 类,并使用常规样式表应用 CSS 规则:
country: {
type: 'Select',
options: ['UK', 'USA'],
fieldClass: 'country-select'
}
此处记录了所有可用的架构属性。