我正在使用此代码将最大字符数限制为确定的字段。。。是否可以强制大写?
以下是我使用的内容:
add_action("wp_footer", "cod_set_max_length");
function cod_set_max_length(){
if( !is_checkout())
return;
?>
<script>
jQuery(document).ready(function($){
$("#cracha_empresa").attr(\'maxlength\',\'33\');
$("#cracha_primeironome").attr(\'maxlength\',\'12\');
$("#cracha_sobrenome").attr(\'maxlength\',\'26\');
// more fields
});
</script>
<?php
}