-4

在 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>
4

2 回答 2

3

为什么不使用 css 代替?

.capitalized{
    text-transform: capitalize
}

将类添加到您的元素并让 css 处理其余部分

于 2013-04-12T11:01:32.833 回答
0
 <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) + ' ';
  }
    obj.value = newVal;
   }
    </script>
于 2013-04-12T10:59:58.560 回答