参见英文答案 >
How to get first character of string?10个答案我在jquery中的知识很差我已经提到了下面的脚本
var header = $('.time'+col).text(); alert(header);
我把字符串作为“109:00AM”,如何获得第一个字母,如1。
你可以帮我吗。
解决方法
尝试与charAt(0)喜欢
var header = $('.time'+col).text(); alert(header.charAt(0));
你也可以使用子串
alert(header.substring(1));
而且@Jai说你可以使用切片也喜欢
alert(header.slice(0,1));