在 ASP.NET 中使用 JavaScript,我需要将小写字母转换为大写字母。
如何用 JavaScript 中的正确答案解决这个问题?
<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server">
<title></title>
<script language="JAVASCRIPT">
function capitalizeMe(obj) {
val = obj.value;
newVal = '';
val = val.split(' ');
for (var c = 0; c < val.length; c++) {
newVal += val[c].substring(0, 1).toUpperCase() +
val[c].substring(1, val[c].length) + ' ';
}
}
</script>
</head>
<body>
<form id="Form2" runat="server">
<asp:TextBox ID="TextBox1" runat="server" onblur="capitalizeMe(this)">
</asp:TextBox>
<asp:TextBox ID="TextBox2" runat="server"></asp:TextBox>
</form>
</body>
</html>