为了让按钮存在以点击将textarea中的所有文本转换为大写字母,我需要做些什么?不只是第一个字母,而是每个字母。
非常感谢你的帮助
答案 0 :(得分:4)
你可以使用css来做那个使用text-transform:uppercase;
答案 1 :(得分:2)
试试这个
$('#buttonID').click(function() {
var upperString = $('#textAreaID').val().toUpperCase();
$('#textAreaID').val(upperString);
});
或使用JavaScript
document.getElementById('buttonID').onclick = function() {
var uppperString = document.getElementById('textAreaID').value.toUpperCase();
document.getElementById('textAreaID').value = upperString;
}
答案 2 :(得分:0)
$("#my_textarea").css({textTransform:"uppercase"})