当我尝试在我的字符串中替换%时,我收到错误“未捕获错误:语法错误,无法识别的表达式:7%with .replace ”我错过了什么?或者有更好的方法吗?
//prints 7%
var percent = $("#sgE-123456-1-123-element :checked").attr("title");
// I'd like to remove the % so I can use the value to multiply
var percent_removed = $(percent).text().replace('%','');
//prints error
console.log(percent_removed);
提前致谢! (:ᘌꇤ⁐ꃳ三
答案 0 :(得分:0)
我的猜测是使用slice()删除最后一个字符。
这会产生类似的结果:
var percent_removed = percent.slice(0,-1);