demo3.js
demo3.css
demo3.html
[送信]をクリックすると、別のページに直接移動します
$('.error').hide();
$('.submit').click(function(event){
var count=$( 'input :checked').length;
if(count==0){
$('.error').show(); }else{
$('form').find(':checkbox').each(funtion(){
if($(this).is(':checked')){
amt=amt+parseInt ($ (this).val());
}
});
$('p .result').show(); ).text('請求額は $'+amt);
チェックボックスがオンになっているかどうかを確認してください
< body>