1

我想使用按键删除 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”时清除会话

4

3 回答 3

1

我认为您可以像这样编辑现有功能:

function textsizer(e) {
    var evtobj=window.event? event : e;
    var element = evtobj.target ? evtobj.target : evtobj.srcElement;
    if (element.tagName.toLowerCase() == "body") {
        var unicode=evtobj.charCode? evtobj.charCode : evtobj.keyCode;
        var actualkey=String.fromCharCode(unicode)
        if(actualkey=="x"){
            location.href="biling.php?cmd="+actualkey;
        }
    }
}
于 2012-07-13T03:02:40.793 回答
1

您可以检查该e.target属性以确定触发keypress事件的元素。

//Does not work on IE
window.addEventListener('keypress', function(e){ console.log(e.target) }, false)

什么时候采取行动e.target.tagName == 'BODY'是一个不错的选择。


更新

有关 的更多信息Event,请查看:

于 2012-07-13T02:35:33.000 回答
-1

$("input[type='text']").keypress(function(){

});

于 2012-07-13T02:39:12.013 回答