我没有太多运气来获得正确的定价排序,因为我相信 $ 符号正在干扰,但我无法让替换功能工作。
我的 HTML
<span class="field-content price">$486.15</span>
我的jQuery函数
price : function( $elem ) {
return parseFloat( $elem.find('.price').text().replace($, '') );
}
出于某种原因,这似乎并没有删除 $ 符号。我在函数中遗漏了什么吗?
我也不确定小数点是否也会导致排序问题
提前致谢