如何剥离第一个字符

时间:2010-08-22 02:53:28

标签: javascript jquery

我正在构建一个URL,我有

escape($('#count_of_stations').html()

问题是价值会像这样进入

1 station
2 stations

我需要删除第一个字符以外的所有字符,所以有没有办法用“station(s)”发送它?

3 个答案:

答案 0 :(得分:3)

parseInt($('#count_of_stations').html())

它会丢弃以后的非数字字符。

答案 1 :(得分:1)

使用substring会有效吗?

escape($('#count_of_stations').html().substring(0, 1));

答案 2 :(得分:0)

如果措辞一致,我只是使用替换。

$('#count_of_stations')。text($('#count_of_stations')。text()。relace('station','stations'));