当输入某些内容直到空格时加载 Javascript 函数

发布于 2024-12-27 08:01:46 字数 125 浏览 0 评论 0原文

例如: 当有人输入 @ 时,它就会准备好该函数。

例如,在 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 技术交流群。

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

发布评论

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

评论(2

脸赞 2025-01-03 08:01:46

这里有一个 javascript 示例:

document.getElementById('test').onkeyup = function(oEvent) {
    if (typeof oEvent == 'undefined') oEvent = window.event;          // IE<9 fix
    if (oEvent.keyCode != 32) return;       // stop if character is not the space
    if (/@USERNAME /.test(this.value)) {      // check if @-template is available
        this.value = this.value.replace(/@USERNAME /g, 'Dirk ');    // replace it
    }
}

另请参阅 this jsfiddle

=== 更新 ===

这里有一个 jQuery 替代方案:

$('#test').keyup(function(oEvent) {                  // set (keyup) event handler
    if (oEvent.keyCode != 32) return;       // stop if character is not the space
    if (/@USERNAME /.test($(this).val())) {   // check if @-template is available
        $(this).val($(this).val().replace(/@USERNAME /g, 'Dirk ')); // replace it
    }
});

另请参阅 this jsfiddle

Here an javascript example:

document.getElementById('test').onkeyup = function(oEvent) {
    if (typeof oEvent == 'undefined') oEvent = window.event;          // IE<9 fix
    if (oEvent.keyCode != 32) return;       // stop if character is not the space
    if (/@USERNAME /.test(this.value)) {      // check if @-template is available
        this.value = this.value.replace(/@USERNAME /g, 'Dirk ');    // replace it
    }
}

Also see this jsfiddle.

=== UPDATE ===

Here an jQuery alternative:

$('#test').keyup(function(oEvent) {                  // set (keyup) event handler
    if (oEvent.keyCode != 32) return;       // stop if character is not the space
    if (/@USERNAME /.test($(this).val())) {   // check if @-template is available
        $(this).val($(this).val().replace(/@USERNAME /g, 'Dirk ')); // replace it
    }
});

Also see this jsfiddle.

听闻余生 2025-01-03 08:01:46

也许您可以尝试按空格键时的 onkeypress 事件。

Perhaps you can try an onkeypress event on pressing the spacebar.

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