现在我在玩 KonvaJS 。我在 click 上设置了一个 shape 事件监听器。当我点击 shape 时,监听器被调用。在我的监听器中,我正在调用 event.preventDefault() 方法来停止触发其他事件。但是当我这样做时,它说:

我不知道我错过了什么。这是我的 code :

<!DOCTYPE html>
<html>

<head>
  <script src="https://cdn.rawgit.com/konvajs/konva/0.9.5/konva.min.js"></script>
  <meta charset="utf-8">
  <title>Konva Scale Animation Demo</title>
  <style>
    body {
      margin: 0;
      padding: 0;
      overflow: hidden;
      background-color: #F0F0F0;
    }
  </style>
</head>

<body>
  <div id="container"></div>
  <script>
    var width = window.innerWidth;
    var height = window.innerHeight;

    var stage = new Konva.Stage({
      container: 'container',
      width: width,
      height: height
    });

    var layer = new Konva.Layer();

    stage.add(layer);

    var gArrow2 = new Image();
     var circle2 = new Konva.Image({

        x: 60, //on canvas
        y: 60,
        image: gArrow2,
        name: 'abc',
        id: 'xyz',
        draggable:true
      });
      circle2.on('click',function(event){
        event.preventDefault()
        console.log(e.type);
      });
      circle2.on('mouseup',function(event){
         event.preventDefault()
        console.log(e.type);
      });
    gArrow2.onload = function() {

      layer.add(circle2);
      layer.draw();
    }
    gArrow2.src = 'http://konvajs.github.io/assets/snake.png';

    var period = 1500;
    var amplitude = 10;
    var centerX = stage.getWidth() / 2;
    var centerY = stage.getHeight() / 2;

    var anim = new Konva.Animation(function(frame) {
      circle2.setY(amplitude * Math.sin(frame.time * 2 * Math.PI / period) + centerY);
    }, layer);

    anim.start();
  </script>

</body>

</html>

最佳答案

似乎 KonvaJS 的 on 处理程序并没有直接给你浏览器事件,而是一个看起来像: javascript - KonvaJS:event.preventDefault 不是函数-LMLPHP 的对象。

浏览器的原始事件存储在 evt 属性中。

在您的代码中,尝试将 event.preventDefault() 替换为 event.evt.preventDefault() : http://plnkr.co/edit/tCESd42r67TzeuLiISxU

关于javascript - KonvaJS:event.preventDefault 不是函数,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/32398562/

10-12 15:59