我需要用句点替换每个<li>
值中的逗号。
我不知道我的代码有什么问题。我检查了控制台,但没有......
$('#stats li').each(function () {
$(this).text().replace(/,/g, '.');
});
此代码应定位<li>
中的每个<ul id="stats">
。
然后,它应该替换每个,
中的每个<li>
,并将其替换为.
我也试过这个:
$('#stats li').each(function () {
var comma = /,/g;
if(comma.test($this)) {
$(this).replace(comma, '.');
}
});
我试过这个:
$('#stats li').each(function () {
var stats = [];
stats.push($(this).text());
stats.replace(/,/g, '.');
console.log(stats);
});
这是Fiddle。