无法绑定“tap”事件到画布

发布于 2024-12-29 21:36:39 字数 627 浏览 0 评论 0原文

尝试点击画布但没有任何反应。请问我做错了什么?

<html>
<head>
<title>canvas tap</title>
<script src="http://code.jquery.com/jquery-1.7.1.js"></script>

<script type="text/javascript">
    $(document).ready(function() {
        $('#my_canvas').bind('tap', function() {
            alert("Canvas pressed!");
        });
    });
</script>

</head>
<body>

<div id="div1" style="width:auto;height:auto;background-color:yellow">
    <canvas id="#my_canvas" width="200" height="200"></canvas>
</div>

</body>
</html>

谢谢!

Trying to tap on canvas and nothing happens. What am I doing wrong please?

<html>
<head>
<title>canvas tap</title>
<script src="http://code.jquery.com/jquery-1.7.1.js"></script>

<script type="text/javascript">
    $(document).ready(function() {
        $('#my_canvas').bind('tap', function() {
            alert("Canvas pressed!");
        });
    });
</script>

</head>
<body>

<div id="div1" style="width:auto;height:auto;background-color:yellow">
    <canvas id="#my_canvas" width="200" height="200"></canvas>
</div>

</body>
</html>

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

别在捏我脸啦 2025-01-05 21:36:39

tap 事件由 jQuery Mobile 定义,而您只包含普通的 jQuery。

The tap event is defined by jQuery Mobile while you only included the plain jQuery.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文