当标签内的输入字段处于活动状态时,如何保持标签处于活动状态?
我有类似 的标签
和CSS一样
标签:活动{/*属性*/}
我希望将属性应用于 内的
name
,当我单击 时,它会被应用,但它单击后不久,
就失去了焦点。
这是一个示例: http://jsfiddle.net/GuCk4/2/
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果我理解你的问题,你可以这样做...而不更改任何 HTML。示例:http://jsfiddle.net/jasongennaro/GuCk4/4/
顺便说一句:你真的不需要input:focus
这里......至少在我在 Chrome 上的测试。其他浏览器可能需要它。编辑
好吧,在@Mohsen 发表评论后,我重新阅读了这个问题。
你想要的是 css 中的父选择器。这是不存在的。由于 css 依赖于级联,因此它会在 DOM 中向下应用样式,而不是向上应用样式。
因此,做你想做的事情的唯一方法是重写你的 HTML,按照 @Mohsen 的答案,或者使用一些 jQuery,就像
示例 2: http://jsfiddle.net/jasongennaro/GuCk4/5/
If I understand your question, you could just do this... without changing any HTML.Example: http://jsfiddle.net/jasongennaro/GuCk4/4/
BTW: you don't really needinput: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
Example 2: http://jsfiddle.net/jasongennaro/GuCk4/5/
标签{显示:块}
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
对于任何使用 jQuery 1.7+ 的人来说,这里有一个更好的 jQuery 功能,可以在包裹在
label
上切换“活动”class
“>。演示: 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 alabel
wrapped around an<input type="checkbox">
.Demo: http://jsbin.com/iHaJeCe/3