<head>
<script type="text/javascript">
function test(){
var thisvalue = 0;
thisvalue=yuanToFen($("#inp").val());
alert(thisvalue);
}
/* Yuan to point*/
function yuanToFen(yuan){
return parseInt(yuan*100,10);//Solution: Change the return here to: parseInt(yuan*1000,10)/10;
}
</script>
</head>
<body>
<div>
<input type="text" name="pl" value="1.14"/><!-- This bug will only appear when the input value is: 1.13, 1.14, 1.15, 1.16. No bug has been found in other data -->
<input type="button" name="ok" value="confirm" onclick="test();"/>
</div>
</body>
</html>