网站首页 美食营养 游戏数码 手工爱好 生活家居 健康养生 运动户外 职场理财 情感交际 母婴教育 时尚美容

html怎么读取输入框的值并进行运算

时间:2024-10-15 03:52:52

1、html:<h1>计算两个值之和</h1><input type="text" value=""/><span>+</span><input type="text" value=""/><span>=</span><span class="total"></span><button class="btn" onclick="total()">计算</button>

html怎么读取输入框的值并进行运算

2、css:h1{ text-align: center; line-height: 20px; font-si芰垄孕动ze: 16px;}input { width: 30%; height: 20px; line-height: 20px; border: 1px solid #2994CA;}span{ display: inline-block; width: 10%; text-align: center;}.total{ color: red;}.btn{ width: 20%; background: #2994CA; color: #fff; margin: 20px auto; display: block; height: 30px; border-radius: 5px;}

html怎么读取输入框的值并进行运算

3、js:function total(){ var number = 0; //获取所有的input,遍历获取值,进行相加 $("input").each(function(){ number += parseFloat($(this).val()); }); //将相加之和,显示到相应的位置 $(".total").html(number)}

html怎么读取输入框的值并进行运算
© 2025 小知经验
信息来自网络 所有数据仅供参考
有疑问请联系站长 site.kefu@gmail.com