我对jquery的了解很少。我已经提到了下面的脚本
var header = $('.time'+col).text();
alert(header);
我得到字符串为“109:00AM”,如何得到第一个字母如1。 你能帮我吗?
答案 0 :(得分:80)
尝试charAt(0)
喜欢
var header = $('.time'+col).text();
alert(header.charAt(0));
您也可以使用substring
之类的
alert(header.substring(1));
正如 @Jai 所说,您也可以使用slice
alert(header.slice(0,1));