如果文本区域为空,如何在文本区域中显示格式化文本?
如何使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
应该可以,
你也应该消除模糊,即使它们实际上是同一件事(我相信)
should work,
you should also probably remove the blur even as they are effectively the same thing (i believe)