Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个移动应用程序,目前无法使用 JQuery Mobile,只能使用 JQuery。我发现在 Android 手机中,“onkeyup”事件根本不起作用,只有当用户键入“back”时才会触发该事件。
我有一个“输入”字段 (HTML5),需要将 onkeyup 事件附加到它。该怎么办?我试图替换 val(),添加像“#”这样的 val somhting 并快速删除它。它没有帮助。
有任何想法吗?
您可以在下面使用它。
$(document).ready(function() { $("#MyElement").keyup(Function(e) { $("#MyElement").val("MyValue"); }); });
e 参数应该告诉您使用属性 keycode 按下了哪个键以及哪个键。希望这可以帮助您找到正确的方向。