手机上的 JavaScript keydown

发布于 2025-01-04 01:04:58 字数 309 浏览 0 评论 0原文

我对这段代码有一些问题

<input type="text" id="search-qq">
<script>
$('#search-qq').keypress(function(event) {alert('key pressed');});
</script>

这段代码在我的计算机上运行, 但为什么这个代码不能在我的android(默认浏览器, 安卓2.3.6)?
在此处输入图像描述

I have some problem with this code

<input type="text" id="search-qq">
<script>
$('#search-qq').keypress(function(event) {alert('key pressed');});
</script>

This code working on my computer,
but Why this code don't work on my android(default browser,
android 2.3.6)??

enter image description here

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

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

发布评论

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

评论(1

月寒剑心 2025-01-11 01:04:59

也许原因是alert是针对javascript的,而在Android中它可能使用AlertDialog而不是alert?并不是任何可以在网页上运行的代码也可以在移动设备上运行,如果你想编写移动网站代码,你应该使用 jQuery mobile 代替,看看这个: JQuery 移动

Maybe the reason is alert is for javascript, and in Android it may use AlertDialog not alert? And not any code can run in web can also run in mobile, if you want to code mobile website, you should use jQuery mobile instead, look this: JQuery Mobile

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