gpt4 book ai didi

javascript - Backbone-forms.js - 我可以在脚本内配置一个文本字段,还是在渲染后使用 jQuery 来完成它?

转载 作者:行者123 更新时间:2023-12-02 19:03:06 24 4
gpt4 key购买 nike

嗨,我在我的脚本中得到了这个表格,我可以解析脚本中的高度和宽度等选项值吗?或者我在通过该脚本渲染后使用 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'
}

所有可用的架构属性为 documented here .

关于javascript - Backbone-forms.js - 我可以在脚本内配置一个文本字段,还是在渲染后使用 jQuery 来完成它?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14589415/

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