我有一个学生列表,每个学生旁边都有复选框。现在,我必须运行一个批处理,但在发送该请求之前,我需要能够在至少选中一个复选框的情况下继续该请求。
到目前为止,我的 JS 函数代码是:
function batchOPTAllocate(){
var pid = encodeURIComponent(document.getElementById('alOptList').value);
var proceed = 0;
var elements = document.getElementsByName('stid[]');
var data = [];
for (var i = 0; i < elements.length; i++){
if (elements[i].checked){
data.push('stid[]='+elements[i].value);
} else{
proceed = 1;
alert("You are required to select at least one student.");
break;
}
}
if(proceed === 0){
params = "&paper="+pid+"&"+data.join('&');
if (window.XMLHttpRequest)
{
xmlhttp=new XMLHttpRequest();
}
else
{
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange=function()
{
if (xmlhttp.readyState==4 && xmlhttp.status==200)
{
// some code here...
}
}
xmlhttp.open("POST","batch.php",true);
xmlhttp.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
xmlhttp.send(params);
}
}
即使使用上面的代码,如果选中其中一个复选框,它仍然会发出警报。