Jquery 获取input 数值

来源:互联网 发布:ppt chm 制作软件 编辑:程序博客网 时间:2024/05/21 11:27
<script type="text/javascript">  $(document).ready(function(){    $("#merchant_crowd_increase").change(function(){      var price =  Number($("#merchant_crowd_increase").val()) + Number($("#merchant_crowd_cost_price").val());      $("#merchant_crowd_price").val(price);    });  });</script>
原创粉丝点击