Trouble capitalizing first word in input with javascript/jquery

前端 未结 2 810
旧巷少年郎
旧巷少年郎 2021-01-27 08:49

I have looked through a lot of the other threads on here with this question. I am having issues capitalizing the first letter of an input.

http://jsfiddle.net/sA9c8/2/

2条回答
  •  迷失自我
    2021-01-27 09:06

    Are you trying to do this

    function crmForm_lastname_onblur(sourceField, sourceRowId) {
        var val = sourceField.value;
    
        if (val.charAt(0).toUpperCase() != val.charAt(0)) 
             sourceField.value = val.charAt(0).toUpperCase() + val.slice(1)
    }
    

    FIDDLE

提交回复
热议问题