jQuery基于Field的自动计算

发布于 2024-11-05 23:39:57 字数 287 浏览 3 评论 0原文

我有这段代码:

<label>Number of Shares:</label><input name="shares" id="shares" type="text" />

Total Value: &euro; 0.00

我需要做的就是在您键入总值时自动计算。例如,如果有人在字段中输入 100,我需要将其乘以 1.50,以便字段下方的 0.00 将被替换为 150.00。

有人能告诉我如何使用 jQuery 做到这一点吗?

I have this bit of code:

<label>Number of Shares:</label><input name="shares" id="shares" type="text" />

Total Value: € 0.00

All I need to do is to auto calculate while you type the total value. For example if someone enters 100 in the field, I need to multply it with 1.50 so 0.00 below the field will be replaced with 150.00.

Can someone tell me how can I do this with jQuery?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

[旋木] 2024-11-12 23:39:57

这是一个简单的代码。我没有添加任何验证或格式功能

HTML

<label>Number of Shares:</label><input name="shares" id="shares" type="text" />
<br />
Total Value: € <span id="result"></span>

Javascript

$(document).ready(function(){
    $('#shares').keyup(function(){
        $('#result').text($('#shares').val() * 1.5);
    });   
});

演示:
http://jsfiddle.net/7BDwP/

This is a simple code. I didn't added any the validation or format function

HTML

<label>Number of Shares:</label><input name="shares" id="shares" type="text" />
<br />
Total Value: € <span id="result"></span>

Javascript

$(document).ready(function(){
    $('#shares').keyup(function(){
        $('#result').text($('#shares').val() * 1.5);
    });   
});

Demo:
http://jsfiddle.net/7BDwP/

灵芸 2024-11-12 23:39:57

这是一个非常好的 jquery 计算插件(它帮助了我) - http: //www.pengoworks.com/workshop/jquery/calculation/calculation.plugin.htm

这对你来说是有用的链接

here is a very good calculation plugin for jquery (it helped me) - http://www.pengoworks.com/workshop/jquery/calculation/calculation.plugin.htm

it will be usefull link for you

星軌x 2024-11-12 23:39:57
$("#shares").keyup(function() {
   var val = parseFloat($(this).val());
   // If val is a good float, multiply by 1.5, else show an error
   val = (val ? val * 1.5 : "Invalid number");
   $("#result").text(val);
})

并将结果封装在一个元素中

Total Value: € <span id="result">0.00</span>

使用keyup事件将使文本实时更新。

演示此处

$("#shares").keyup(function() {
   var val = parseFloat($(this).val());
   // If val is a good float, multiply by 1.5, else show an error
   val = (val ? val * 1.5 : "Invalid number");
   $("#result").text(val);
})

And enclose the result in an element

Total Value: € <span id="result">0.00</span>

Using keyup event will make the text be updated in real time.

Demo here.

孤独岁月 2024-11-12 23:39:57

一个非常简单的方法是使用“keyup”。

HTML

<form id="order_form">
<input type="number" id="qty"/>
<input type="text" id="result"/>
</form>

JS

$(document).ready (function(){   
$('#qty').on('keyup change',function(){
    $('#result').val($(this).val() * 1.50);
    });

});

这将实时更改输出。

A very easy approach is to use "keyup".

HTML

<form id="order_form">
<input type="number" id="qty"/>
<input type="text" id="result"/>
</form>

JS

$(document).ready (function(){   
$('#qty').on('keyup change',function(){
    $('#result').val($(this).val() * 1.50);
    });

});

This will change the output in real-time.

蓝海似她心 2024-11-12 23:39:57
// this approach should work...not sure

$("#shares").onchange= update( $(this).val() );

function update(inputVal)
{
 if( parseFloat( inputVal ) == true)
  $("resultDiv").html( inputVal * 1.5 );
}
// this approach should work...not sure

$("#shares").onchange= update( $(this).val() );

function update(inputVal)
{
 if( parseFloat( inputVal ) == true)
  $("resultDiv").html( inputVal * 1.5 );
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文