您好我正在使用后缀函数将th,st和rd添加到数字中,但我试图用span填充实际后缀,不知何故它不起作用,不知道为什么。
感谢您的帮助,它将其切换为html,是否有机会删除计数器本身,因为我从数据库中获取所有数字,只需要为数字添加后缀,而不是两者。我从div中删除了数字,但仍然得到了数字。
这是代码
<div></div>
<div></div>
<div></div>
<div></div>
$("div").html(function (i, t) {
i++;
var str = i.toString().slice(-1),
suffix = '';
switch (str) {
case '1':
suffix = i.toString().slice(-2) === '11' ? 'th': 'st';
break;
case '2':
suffix = i.toString().slice(-2) === '12' ? 'th' : 'nd';
break;
case '3':
suffix = i.toString().slice(-2) === '13' ? 'th' : 'rd';
break;
case '4':
case '5':
case '6':
case '7':
case '8':
case '9':
case '0':
suffix = 'th';
break;
}
return i + '<span>' + suffix + '</span>';
});
答案 0 :(得分:2)
如果将.text()更改为.html()?
,它是否有效<div>1</div>
<div>2</div>
<div>3</div>
<div>4</div>
$("div").html(function (i, t) {
i++;
var str = i.toString().slice(-1),
suffix = '';
switch (str) {
case '1':
suffix = i.toString().slice(-2) === '11' ? 'th': 'st';
break;
case '2':
suffix = i.toString().slice(-2) === '12' ? 'th' : 'nd';
break;
case '3':
suffix = i.toString().slice(-2) === '13' ? 'th' : 'rd';
break;
case '4':
case '5':
case '6':
case '7':
case '8':
case '9':
case '0':
suffix = 'th';
break;
}
return i + '<span>' + suffix + '</span>';
});