我想使用按键删除 php 会话变量。所以我使用了这些代码,
<script type="text/javascript">
function textsizer(e){
var evtobj=window.event? event : e
var unicode=evtobj.charCode? evtobj.charCode : evtobj.keyCode
var actualkey=String.fromCharCode(unicode)
if(actualkey=="x"){
location.href="biling.php?cmd="+actualkey;}
}
document.onkeypress=textsizer
</script>
<?php if(isset($_GET['cmd'])){
unset($_SESSION["bill_array"]);
header('location:biling.php');
}
?> }
但问题是,当我在文本框中输入“x”时,这段代码也会清除会话。所以我只想停止它并仅在我在文本框外按“x”时清除会话