当标签内的输入字段处于活动状态时,如何保持标签处于活动状态?

发布于 2024-12-03 16:25:23 字数 325 浏览 0 评论 0 原文

我有类似 的标签 和CSS一样 标签:活动{/*属性*/} 我希望将属性应用于 内的 name,当我单击 时,它会被应用,但它单击后不久, 就失去了焦点。

这是一个示例: http://jsfiddle.net/GuCk4/2/

I have the label like <label>name:<input></label>
and the css like
label:active{/*properties*/}
I'd like the properties to be applied to name inside <label> when I click on <input> it gets applied but it looses focus to the <input> soon after I click it.

here is an example: http://jsfiddle.net/GuCk4/2/

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

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

发布评论

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

评论(3

世界如花海般美丽 2024-12-10 16:25:23

如果我理解你的问题,你可以这样做...而不更改任何 HTML。

label, input, input:focus{
    font-weight: bold;
}

示例:http://jsfiddle.net/jasongennaro/GuCk4/4/

顺便说一句:你真的不需要 input:focus 这里......至少在我在 Chrome 上的测试。其他浏览器可能需要它。

编辑

好吧,在@Mohsen 发表评论后,我重新阅读了这个问题。

你想要的是 css 中的父选择器。这是不存在的。由于 css 依赖于级联,因此它会在 DOM 中向下应用样式,而不是向上应用样式。

因此,做你想做的事情的唯一方法是重写你的 HTML,按照 @Mohsen 的答案,或者使用一些 jQuery,就像

$('input').focus(function(){
    $(this).parent().css('font-weight','bold');
});

$('input').blur(function(){
    $(this).parent().css('font-weight','normal');
});

示例 2: http://jsfiddle.net/jasongennaro/GuCk4/5/

If I understand your question, you could just do this... without changing any HTML.

label, input, input:focus{
    font-weight: bold;
}

Example: http://jsfiddle.net/jasongennaro/GuCk4/4/

BTW: you don't really need input:focus here... at least in my tests on Chrome. You may need it for other browsers.

EDIT

Okay, after @Mohsen's comment, I reread the question.

What you want is a parent selector in css. This does not exist. Since css relies on the cascade, it applies styles down the DOM not up it.

So, the only way to do what you want is to rewrite your HTML, as per @Mohsen's answer, or use some jQuery, like so

$('input').focus(function(){
    $(this).parent().css('font-weight','bold');
});

$('input').blur(function(){
    $(this).parent().css('font-weight','normal');
});

Example 2: http://jsfiddle.net/jasongennaro/GuCk4/5/

初吻给了烟 2024-12-10 16:25:23

标签{显示:块}
label:active,label:hover,label:focus{font-weight:700}

按照您想要的方式工作。

@steveax是正确的,不要将标签放在输入后面,除非它是复选框

label{display:block}
label:active,label:hover,label:focus{font-weight:700}

works how you want it to.

@steveax is correct, don't put the label after the input unless it's a checkbox

素衣风尘叹 2024-12-10 16:25:23

对于任何使用 jQuery 1.7+ 的人来说,这里有一个更好的 jQuery 功能,可以在包裹在 label 上切换“活动”class “>。

$("body").on(
  "click",
  "label input[type=checkbox]",
  function(){
    $(this).parent("label").toggleClass("active");
  }
);

演示: http://jsbin.com/iHaJeCe/3< /a>

For anyone using jQuery 1.7+, here's a nicer bit of jQuery to toggle an "active" class on a label wrapped around an <input type="checkbox">.

$("body").on(
  "click",
  "label input[type=checkbox]",
  function(){
    $(this).parent("label").toggleClass("active");
  }
);

Demo: http://jsbin.com/iHaJeCe/3

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