JavaScript String 对象
toUpperCase()方法将字符串转换为大写。
string.toUpperCase()
var str1 = "www.cainiaojc.com"; var str2 = str1.toUpperCase();
所有浏览器都完全支持toUpperCase()方法: