Jquery:当用户单击表单字段时如何显示附加文本

发布于 2024-12-03 05:10:55 字数 296 浏览 1 评论 0 原文

我是 Jquery 的新手,正在尝试找到一种在用户单击表单时显示附加文本的方法。

输入字段如下所示: 并且文本的其余部分包含在

任何为我指明正确方向的帮助将不胜感激: )

I am new to Jquery and am trying to find a way to show additional text when a user clicks into a form.

The input field looks like this: <input class="feed" id="post_title" name="post[title]" size="100" rows="20" type="text class="title_search""> and the the rest of the text is contained with a <div class = "post-input">

Any help pointing me in the right direction would be much appreciated :)

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

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

发布评论

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

评论(3

给妤﹃绝世温柔 2024-12-10 05:10:55
    $('input').focusin(function() {
       $('div').show();
    });

    // Hide the text once you are out of the input
    $('input').focusout(function() {
       $('div').hide();
    });

这是基本思想。
http://api.jquery.com/focusin/

    $('input').focusin(function() {
       $('div').show();
    });

    // Hide the text once you are out of the input
    $('input').focusout(function() {
       $('div').hide();
    });

This is the basic idea.
http://api.jquery.com/focusin/

像极了他 2024-12-10 05:10:55
$('#post_title').click(function(){
  $(this).next('.post-input').html('hey! you clicked the input!');
});

//假设div位于输入旁边,如果不是,我建议也为其放置一个id。

如果 div 中已经有文本并且您只想显示它

$('#post_title').click(function(){
      $(this).next('.post-input').show();
    });
$('#post_title').click(function(){
  $(this).next('.post-input').html('hey! you clicked the input!');
});

//asuming the div is next to the input, if not i suggest placing an id to it, too.

and if there was alredy text in the div and you just want to show it

$('#post_title').click(function(){
      $(this).next('.post-input').show();
    });
数理化全能战士 2024-12-10 05:10:55
$('.feed').click(function() {
    $('.post-input').show();
}
$('.feed').click(function() {
    $('.post-input').show();
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文