📌  相关文章
📜  如何使用 jQuery 将字符串的第一个字母转换为大写?

📅  最后修改于: 2022-05-13 01:55:56.830000             🧑  作者: Mango

如何使用 jQuery 将字符串的第一个字母转换为大写?

任务是在 jQuery 的帮助下,在不使用toUpperCase() 方法的情况下将字符串的第一个字母大写。下面讨论两种方法:

方法一:本例中使用css() 方法text-transform 属性值设置为大写

例子:

 
 
  
 
     
        How to convert first letter of a
        string to upper case using jQuery?
    
      
    
 
  
 
      
    

          GeeksForGeeks      

           

        Click on the button to         perform the operation.     

           Type Here:     

                       

                 

输出:

方法二:在这个例子中,我们使用 CSS 属性来执行操作。已向元素添加了一个新 ID,该 ID 将属性text-transform 设置capitalize

例子:

 
 
  
 
     
        How to convert first letter of a
        string to upper case using jQuery?
    
      
    
      
    
 
  
 
      
    

          GeeksForGeeks      

           

        Click on the button to         perform the operation.     

           Type Here:     

                       

                 

输出: