我试图在用户填写后将文本输入值更改为大写字符串:
$('#University').blur(function(){
if ( $(this).attr("value") != '') {
var uni = $(this).val();
uni.toUpperCase();
alert(uni);
$(this).attr("value", uni);
};
});
<input type="text" name="Universidad" size="45" class="required" id="University">
如果我在字段中写入“leandro”,alert(uni)
则会抛出:“leandro”而不是“LEANDRO”。任何的想法?
我无法使用 CSS,因为我必须通过此表单发送大写数据,而 css 仅更改渲染而不更改值