我有以下代码:
$('#table1 .set2').each(function()
{
alert($(this).html());
});
这会在当前警告框中显示一系列%。
99%
87%
12%
我需要做的是删除%
字符,这样我就可以使用我可以使用的数字。
欢迎任何建议。
答案 0 :(得分:4)
答案 1 :(得分:0)
我相信,这应该对你有用
$('#table1 .set2').each(function()
{
var number=$(this).html().trim().slice(0,-1);
alert(number);
});