配送オプション用に、このようなスクリプトがあります
<script language="javascript">
$(document).ready(function()
{
var total = 0;
function calcTotal()
{
$("input:checked").each(function()
{
//This happens for each checked input field
var value = $(this).attr("value");
total += parseInt(value);
});
}
//This happens when the page loads
calcTotal();
$("#total").append('<input style="border:0px" type="text" name="total" value=" '+ total +' " readonly />');
$("input:radio").click(function()
{
total = 0;
calcTotal();
$("#total").html ('<input style="border:0px" type="text" name="total" value=" '+ total +' " readonly />');
});
});
</script>
オプションへの無線入力を使用すると、合計で
オプション1<input name="shipp" type="radio" value="1234567" checked />
オプション 2<input name="shipp" type="radio" value="2345678" />
出力:<div id=total></div>
ヘルプが必要です。ビューに何千ものフォーマットの総数を表示するにはどうすればよいですか?たとえば、1234567の場合、結果は1,234,567になりますか?
手伝ってくれてありがとう