如何用 javascript 放大写的东西?使用 touppercase() 方法直接转换字符串为大写。使用 string.prototype.touppercase 方法修改原始字符串为大写。使用正则表达式将小写字母替换为大写字母。如何用...