标签:height asc jquer function var this mod set weight
//金额统计,keyup不能动态使用的
$("[name=red_money]").on("keyup", moneyKeyUpBind);
function moneyKeyUpBind(){
var amount = 0;
$("#red_mode_set [name=red_money]").each(function () {
var v = parseFloat($(this).val());
if (!isNaN(v)) {
amount += v;
}
})
$("#red_amount").html(amount + "元");
}
//添加红包模式
$(".drag_ad").click(function () {
$("#red_mode_set").append($("#red_mode_template").html());
$("#red_mode_set [name=red_money]:last").bind("keyup", moneyKeyUpBind);
})
标签:height asc jquer function var this mod set weight
原文地址:http://www.cnblogs.com/danlis/p/6030531.html