当我单击按钮提交表单时,我会调用以下函数:
function dadosFormularios(preenchimentoForm){
//var path = document.location.pathname;
//alert(path);
alert(preenchimentoForm);
//window.location.href = 'wp-content/themes/template/index.php';
var qstringA = '';
//dados dos campos
var nome=document.getElementById("nome").value;
qstringA = 'nome='+ nome;
//alert(qstringA);
if(preenchimentoForm==false){
alert('Please correct the errors in the Form');
}
else{
if(preenchimentoForm==true){
window.location.href = 'index.php?'+qstringA;
return false;
}
}
}
由于我正在使用这种处理数据的方式,我如何提醒我的页面index.php
该函数发送的数据到达索引?我不能使用 aif (isset($_POST['button']..)
因为我是通过函数而不是通过表单的按钮发送信息的,对吗?