我正在构建一个URL,我有
escape($('#count_of_stations').html()
问题是价值会像这样进入
1 station
2 stations
我需要删除第一个字符以外的所有字符,所以有没有办法用“station(s)”发送它?
答案 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'));