Ich mache ein Stoppuhr-Programm in Python und möchte wissen, wie man erkennt, ob eine Taste gedrückt wird (z. B. p für Pause und s für Stopp), und ich möchte nicht, dass es so etwas wie raw_input ist, das auf das wartet Benutzereingabe vor Fortsetzung der Ausführung. Weiß jemand, wie man …
Ich möchte ein keyDown-Ereignis für ein div in React verwenden. Ich mache: componentWillMount() { document.addEventListener("keydown", this.onKeyPressed.bind(this)); } componentWillUnmount() { document.removeEventListener("keydown", this.onKeyPressed.bind(this)); } onKeyPressed(e) { console.log(e.keyCode); } render() { let player = this.props.boards.dungeons[this.props.boards.currentBoard].player; return ( <div className="player" style={{ position: "absolute" }} onKeyDown={this.onKeyPressed} // not working > <div className="light-circle"> <div className="image-wrapper"> <img …
Ich möchte ein Ereignis auslösen, sobald ich aufhöre, Zeichen (nicht während der Eingabe) in mein Eingabetextfeld einzugeben. Ich habe versucht mit: $('input#username').keypress(function() { var _this = $(this); // copy of this object for further usage setTimeout(function() { $.post('/ajax/fetch', { type: 'username', value: _this.val() }, function(data) { if(!data.success) { // continue …
Ich versuche, Pfeiltasten in jQuery zu erfassen, aber es werden keine Ereignisse ausgelöst. $(function(){ $('html').keypress(function(e){ console.log(e); }); }); Dies generiert Ereignisse für alphanumerische Schlüssel, aber Löschen, Pfeiltasten usw. erzeugen kein Ereignis. Was mache ich falsch, um diese nicht zu erfassen?
We use cookies and other tracking technologies to improve your browsing experience on our website,
to show you personalized content and targeted ads, to analyze our website traffic,
and to understand where our visitors are coming from.
By continuing, you consent to our use of cookies and other tracking technologies and
affirm you're at least 16 years old or have consent from a parent or guardian.