|
|
|
อยากจะถามเรื่องการคำนวณแคลอรี่ที่กินในชีวิตประจำวัน |
|
|
|
|
|
|
|
http://jsfiddle.net/Ue5wc/
<meta http-equiv="Content-Type" content="text/html; charset=utf8" />
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$(".foods").click(function(){
var total = 0;
$(".foods").each(function(){
if($(this).is(":checked")){
total = parseInt(total) + parseInt($(this).val());
}
});
$("input[name='man']").val(total);
$("input[name='girl']").val(total);
});
});
</script>
<input type='checkbox' class='foods' value='350' />ข้าวสวย <br />
<input type='checkbox' class='foods' value='800' />ข้าวกระเพราหมู <br />
<input type='checkbox' class='foods' value='900' />ผัดไทย<br />
<input type='checkbox' class='foods' value='585' />ข้าวมันไก่<br />
<input type='checkbox' class='foods' value='690' />ข้าวขาหม<br /><br />
ชายไม่เกิน 2,500 KCal. <input type='text' name='man' /><br />
หญิงไม่เกิน 2,000 KCal. <input type='text' name='girl' /><br />
|
|
|
|
|
Date :
2014-01-31 22:37:31 |
By :
sakuraei |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|