手机上的 JavaScript keydown
我对这段代码有一些问题
<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)??
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
也许原因是
alert
是针对javascript的,而在Android中它可能使用AlertDialog
而不是alert
?并不是任何可以在网页上运行的代码也可以在移动设备上运行,如果你想编写移动网站代码,你应该使用 jQuery mobile 代替,看看这个: JQuery 移动Maybe the reason is
alert
is for javascript, and in Android it may useAlertDialog
notalert
? 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