How to ignore “-” and “.” characters in a value during sort comparison?
问题 I have an html page that has a field that can be sorted. I also have created a javascript function that can sort that field in order. Let's imagine p_cSort is the 'id' name of that field. function change_sort(neworder) { document.sortForm.p_cSort.value = neworder; document.sortForm.submit(); However when I have values like 12.34 12-35 12.36 12-33 and I search for them on my search page. The results returned are 12.34 12.36 12-33 12-35 How can I ignore the characters "." and "-" when sorting?