当输入某些内容直到空格时加载 Javascript 函数
例如: 当有人输入 @
时,它就会准备好该函数。
例如,在 Twitter 上,当有人输入 @USERNAME
时会显示一些内容,然后在空格之后,他们不会显示任何内容。
For example:
When someone types @
it will ready the function.
On Twitter for example, shows something when someone types @USERNAME
then after the space, they don't show anything.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这里有一个 javascript 示例:
另请参阅 this jsfiddle。
=== 更新 ===
这里有一个 jQuery 替代方案:
另请参阅 this jsfiddle。
Here an javascript example:
Also see this jsfiddle.
=== UPDATE ===
Here an jQuery alternative:
Also see this jsfiddle.
也许您可以尝试按空格键时的 onkeypress 事件。
Perhaps you can try an onkeypress event on pressing the spacebar.