使用原型时不会触发JQuery键事件

时间:2011-07-10 21:31:11

标签: jquery prototypejs conflict key-events

  

可能重复:
  jQuery and Prototype events

我正在使用Box2dJS库,它使用原型,所以我必须包含原型库才能工作。我没有在我的主脚本中使用任何原型代码,只有Box2d对象使用原型。我在我的脚本中使用JQuery,因为我包含了原型,似乎jQuery事件没有被触发。

以下是相关的JS代码:

$.noConflict();

jQuery(document).ready(function(){
init();
});

function init(){

//add event handler to surrounding DIV to monitor mouse move and keystrokes
jQuery("#container").keypress(function(e){
    keys[e.keyCode] = true;
    alert("key pressed!");
});
jQuery("#container").keydown(function(e){
    keys[e.keyCode] = true;
});
jQuery("#container").keyup(function(e){
    keys[e.keyCode] = true;
    alert("Key released!");
});
}

这是html代码:

<html>
<head>
    <title>Box2D Test</title>
    <!--[if IE]><script src="lib/excanvas.js"></script><![endif]-->
    <script src="lib/prototype-1.6.0.2.js"></script>
    <!-- box2djs scripts here-->
</head>
<body>
    <center>
        <div id="container" style="border:1px solid; cursor:none; width:600px; height:400px;">
            <canvas id="canvas" width="600" height="400" >
                Could not create Canvas!
            </canvas>
        </div>
        <script type="text/javascript" src="jquery-1.6.2.min.js"></script>
        <script src='js/box2dutils.js'></script>
        <script type="text/javascript" src="main.js"></script>
    </center>
</body>
</html>

没有任何警报消失,但是当我删除原型(和box2d)库时,一切正常。我该如何解决这个问题?

2 个答案:

答案 0 :(得分:1)

从您提供的代码片段中,您可能希望在jQuery库之前重新排序box2dutils lib的加载。可能是box2dutils可能劫持事件或导致与jQuery冲突

答案 1 :(得分:0)

它们很可能彼此不兼容,你必须同时使用它们吗?