我对 jQuery 了解不多,这就是为什么我想请你帮我在我的脚本中添加美元 ($) 的符号作为文本。需要提一下,该脚本无需美元即可运行。
<script>
$(document).ready(function($){
var money = parseFloat($("#INSERTMONEY").val());
$('#costline').val((money).toFixed(2).text("$"));
})
</script>
在我看来,我通过添加这个做错了 - .text("$")。我非常感谢您的贡献。预先感谢。