我有一个特定的 jQuery 在 IE9、Chrome 和 Firefox 等中运行良好,但是 IE8 似乎特别不喜欢它:
<script type="text/javascript">
$("#bandwidth").ForceNumericOnly();
$("#bandwidth").on("input", function() {
var total = this.value*0.18;
$('#total').val('£'+ total.toFixed(2));
});
</script>
这从带宽输入中获取输入,进行相应计算,然后写入总输入,前缀为 £。
它似乎没有对总输入执行计算,这让我很困惑。