如果文本区域为空,如何在文本区域中显示格式化文本?

发布于 2025-01-01 23:06:34 字数 515 浏览 1 评论 0原文

如何使用 jQuery(使用 ul li p...)显示文本,在失去焦点后,文本区域为空,现在当我获得焦点时,我失去了文本,但是如果我没有输入任何内容,如何显示它? 我的“伪占位符”如下所示:

$('textarea.hinted').focus(function() {
    console.log('focus');
    $('#textarea-placeholder').hide();
});
$('textarea.hinted').blur(function() {
    console.log('blur');
    $('#textarea-placeholder').hide();
});
$('textarea.hinted').focusout(function() {
    console.log($(this).val());
    if (this.val == '') {
        $('#textarea-placeholder').show(); 
    }
});

html

How can I show text, using jQuery (with ul li p...), after focus is losed, and textarea is empty, now when I get focus I loose text, but how to show it if I didn't entered anything?
My "pseudo placeholder" looks like this:

$('textarea.hinted').focus(function() {
    console.log('focus');
    $('#textarea-placeholder').hide();
});
$('textarea.hinted').blur(function() {
    console.log('blur');
    $('#textarea-placeholder').hide();
});
$('textarea.hinted').focusout(function() {
    console.log($(this).val());
    if (this.val == '') {
        $('#textarea-placeholder').show(); 
    }
});

html

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

家住魔仙堡 2025-01-08 23:06:34
$('textarea.hinted').focusout(function() {
    if ($(this).val() == '') {
        $('#textarea-placeholder').show(); 
    }
});

应该可以,

你也应该消除模糊,即使它们实际上是同一件事(我相信)

$('textarea.hinted').focusout(function() {
    if ($(this).val() == '') {
        $('#textarea-placeholder').show(); 
    }
});

should work,

you should also probably remove the blur even as they are effectively the same thing (i believe)

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