Сообщение от _Eldar_
|
отредактировал выше
|
ok!
<!DOCTYPE HTML>
<html>
<head>
<title>Untitled</title>
<meta charset="utf-8">
<style type="text/css">
</style>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script>
$(function() {
$("*").contents().filter(function() {
return 3 == this.nodeType
}).each(function() {
var a = this.data;
this.data = a.replace(/-?\d+\.\d+/g, function(a) {
var len = a.match(/\.0+/);
len = len && len[0].length > 3 ? len[0].length : 3;
return +(+a).toFixed(len)
})
})
});
</script>
</head>
<body> <table id="msgFlash"><tr><td>Число</td><td>129.36363636364</td><td>3.3643534564</td><td >56.818181818182</td></tr></table>
всякая фигня -123.456789
0.00589
-0.000005155102<br>5.5
</body>
</html>