str = str.substring(0,1).toUpperCase()+str.substring(1)
截取第一个位置变成大写,然后从第一个位置截取所有。
<script type="text/javascript">alert("hello world".replace(/(^|\s+)\w/g,function(s){
return s.toUpperCase()
}))
</script>
//a变量你就自己获取,我这儿为你方便你理解我就直接写上了var a = 'Ajjfioewjfoieji'
if(!(/^[A-Z][A-z0-9]*$/).test(a)){
alert('请首字母大写')
}