我想知道为什么我的代码在我使用
后执行window.location
以及如何避免它?
<script type="text/javascript">
if(!confirm("question?"))
{
window.location = 'index.php?a=my_posts';
}
</script>
<?php
delete("spikes","id",$id);
?>
为什么在if语句中的条件返回true时执行php代码?