我需要爲每個複選框獲取值,並在用戶沒有選中任何複選框時將其移動到另一個頁面。如何從複選框中獲取值並用javascript計算單擊的項目
有錯誤,但我不能承認它
$('#Submit').click(function() {
if($('#Search').val() == "")
{alert('please enter your domain without Extuntison');return false;}
results.style.display = 'none';
$('#results').html('');
loading.style.display = 'inline';
$.post('../domain_checker/process.php?domain=' + escape($('#Search').val()),{
}, function(response){
results.style.display = 'block';
$('#results').html(unescape(response));
loading.style.display = 'none';
//$('#results').animate({height : '450px' }, 2000);
results.style.height = '400px';
});
return false;
});
$(function(){
$('#order_Now').click(function(){
var count = $("[type='checkbox']:checked").length;
var val = [];
for(i=0;i<count;i++){
$(':checkbox:checked').each(function(i){
val[i] = $(this).val();
});
}
});
});
與此HTML頁面時加載AJAX
<form action="ordedomain.php" name="formdomain" method="post" id="formdomain" onclick="check_domain_checkBox()">
<div id="results" style="width:450px;" align="left">
</div>
</form>
,並在頁面的PHP通過AJAX這個代碼reloade
<form action="ordedomain.php" name="formdomain" method="post" id="formdomain" onclick="check_domain_checkBox()">
<input type="checkbox" value="a" id="arrDomain" name="arrDomain">a
<input type="checkbox" value="b" id="arrDomain" name="arrDomain">b
<input type="checkbox" value="c" id="arrDomain" name="arrDomain">c
</form>
我送檢查項目到另一頁面,但我需要檢查,如果沒有檢查任何這也提交之前該複選框阿賈克斯重新加載,因爲我阿賈克斯 創建代碼,以便該複選框是動態的 – Reiozaghi