使用 jquery 或其他库形成提示

发布于 2024-09-04 05:25:59 字数 404 浏览 7 评论 0原文

这是 jquery 的表单验证:

http://www.position-absolute.com/articles/jquery-form-validator-because-form-validation-is-a-mess/

我需要类似的东西,但必须出现提示当我通过单击选择输入文本表单时,它必须消失,当我选择另一个输入文本表单时。

有没有办法用 jquery、mootools、scriptaculus 或任何其他库来做到这一点?

谢谢^_^

This is a form validation for jquery:

http://www.position-absolute.com/articles/jquery-form-validator-because-form-validation-is-a-mess/

I need something like that but the tips has to appear when I select the input text form by clicking on it and has to dissapear when I select another input text form.

Is there a way to do this with jquery, mootools, scriptaculus or any other library ?

Thanks ^_^

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

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

发布评论

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

评论(1

阪姬 2024-09-11 05:25:59

在jquery中,我会做这样的事情:

$('input').focus(function(){
  $(this).sibling('div.form_tooltip').show();
});
$('input').blur(function(){
  $(this).sibling('div.form_tooltip').hide();
});

相应的html:

<div class="form_input">
  <label for="..">label</label>
  <input type="text" name="" id="" value="" />
  <div class="form_tooltip" style="display: none;">
    Here goes the html that appears in the tooltip, you probably want this div to be positioned relatively to the div.form_input.
  </div>
</div>

In jquery, I'd do something like this:

$('input').focus(function(){
  $(this).sibling('div.form_tooltip').show();
});
$('input').blur(function(){
  $(this).sibling('div.form_tooltip').hide();
});

corresponding html:

<div class="form_input">
  <label for="..">label</label>
  <input type="text" name="" id="" value="" />
  <div class="form_tooltip" style="display: none;">
    Here goes the html that appears in the tooltip, you probably want this div to be positioned relatively to the div.form_input.
  </div>
</div>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文