<script type="text/javascript">
function claim()
{
var c = confirm( You sure? );
if(c)
{
var password=prompt("Please mention pw","");
if (password!=null && password!="")
{
$.post("/claim/<?php echo $refnr; ?>", { partner_pwd: password },
function(data) {
alert(data);
if(data == 1 )
{
return true;
}else{
return false;
}
});
}else{
return false;
}
}else{
return false;
}
}
</script>
当测试时,我得到请提及pw, 在我输入并按好后, 它提交我的表格, 而不是制作$. post, 只有在数据 = 1 (返回真实) 时才提交我的表格
索赔()按我的提交按钮调用;
<input type="submit" name="submit" onclick="return claim()"; value="Submit" />
我尝试了警示调试 就像我以为当它读到$. post () 时它会自动提交一样, 我只希望它提交(通过返回真实) 如果数据是 1, 我只希望它提交(通过返回真实) 。