问题 I want to add the currency sign to my number while making the value remain sortable as a number in my Bootstrap Table (line 30-34; column 4 in the table): for (var p=0; p<variable_data.length; p++){ try{ variable_data[p]["4"] = "$" + Math.round(variable_data[p]["4"]) } catch(e){ } } http://jsfiddle.net/mademoiselletse/s0d1xgzt/ The values with the '$' attached are sorted as strings instead of numbers. All the currency sorting problems I found online pertain to the DataTable and tablesorter()