jQuery从文本中删除字符

时间:2014-05-21 20:53:56

标签: jquery html string character

我有以下代码:

$('#table1 .set2').each(function()
{
    alert($(this).html());
});

这会在当前警告框中显示一系列%。

99%
87%
12%

我需要做的是删除%字符,这样我就可以使用我可以使用的数字。

欢迎任何建议。

2 个答案:

答案 0 :(得分:4)

变化:

$(this).html()

为:

$(this).html().replace('%','')

<强> jsFiddle example

答案 1 :(得分:0)

我相信,这应该对你有用

$('#table1 .set2').each(function()
    {
        var number=$(this).html().trim().slice(0,-1);
        alert(number);
    });