将input 中的小写字母转化为大写字母

小写转换为大写,使用toLocaleUpperCase()

options.element.find(".CarNumber").textbox({
                label: '车牌号:',
                prompt: '请输入',
                required: true,
                 '90%',
                labelWidth: '110px',
                labelAlign: 'right',
                onChange: function (n, o) {
                    options.element.find(".PlateNumber").textbox('setValue', n.toLocaleUpperCase());
                }
            });
原文地址:https://www.cnblogs.com/moonstars/p/13491145.html