我有一个脚本,可以在您键入值时实时计算某些字段中的值,并且工作正常。 但是,如果我将值发送到数据库然后从那里取回并填充来自数据库的请求中的字段,则不再计算字段,除非它们在已填充的字段中重新输入。
在我从db加载填充的表单时,我怎么能开始计算呢?
这是Jscript
<script type="text/javascript">
$(document).ready(function() {
$('input[id=r],input[id=p]').change(function(e) {
var total = 0;
var $row = $(this).parent();
var rate = $row.find('input[id=r]').val();
var pack = $row.find('input[id=p]').val();
total = parseFloat(rate * pack);
//update the row total
$row.find('.amount').text(total);
var total_amount = 0;
$('.amount').each(function() {
//Get the value
var am= $(this).text();
console.log(am);
if (typeof console == "undefined") {
this.console = {log: function() {}};
}
//if it's a number add it to the total
if (IsNumeric(am)) {
total_amount += parseFloat(am, 10);
}
});
$('.total_amount').text(total_amount);
});
});
//isNumeric function Stolen from:
//http://stackoverflow.com/questions/18082/validate-numbers-in-javascript-isnumeric
function IsNumeric(input) {
return (input - 0) == input && input.length > 0;
}
</script>
这是HTML
<tr>
<td></td>
<td>
<div>
<input name="a2c" type="text" size="10" value="<? echo "$a2c";?>">
<input id="r" class="rate" name="a2q" type="text" maxlength="255" size="5" value="<? echo "$a2q";?>">
<input id="p" class="pack" name="a2p" type="text" maxlength="255" size="5" value="<? echo "$a2p";?>">
<span class="amount"></span></div>
</td>
</tr>
<tr>
<td></td>
<td>
<div>
<input name="a3c" type="text" size="10" value="<? echo "$a3c";?>">
<input id="r" class="rate" name="a3q" type="text" maxlength="255" size="5" value="<? echo "$a3q";?>">
<input id="p" class="pack" name="a3p" type="text" maxlength="255" size="5" value="<? echo "$a3p";?>">
<span class="amount"></span></div>
</td>
</tr>
答案 0 :(得分:1)
您可以强制更改事件(以防止重复代码):http://jsfiddle.net/2vqT5/
$(".rate").change();
答案 1 :(得分:0)
$('input#r').change()
会自动在id为“r”的输入上触发更改事件;那就够了吗?
答案 2 :(得分:0)
您可以做的是在脚本加载时运行您的功能。 一种方法是从.change()中删除匿名函数,并为其命名。
function yourPreviouslyAnonymousFunction() { ... }
$(document).ready(function () {
yourPreviouslyAnonymousFunction();
$('input[id=r],input[id=p]').change(yourPreviouslyAnonymousFunction);
});
因为在页面加载完成时没有调用您的函数,因为您使用PHP注入值。这样,当页面加载完成后,您的函数也会运行一次,因此使用您的函数计算值。
一种不同的方式,因为你已经在使用jQuery,就是强制事件发生:
$(document).ready(function () {
$('input[id=r],input[id=p]').change(function () {
...
// Leave this as is
...
});
$('input[id=r],input[id=p]').change();
});
这是MassivePenguin解释的方式。
答案 3 :(得分:0)
将所有逻辑放入单独的函数recalculate() {...}
中。使你的.change()事件调用recalculate()
,并添加代码以在页面加载时执行:
$(document).ready(function() {
recalculate();
});
有一点不清楚,你是如何往往数据库的。你在做ajax,还是正在重做页面?以上工作用于页面重新加载或表单提交,但如果你正在进行ajax调用,你必须挂钩提交后的ajax回调,并从那里调用recalculate()。