作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
给定嵌套的 html:
<a class="star">Hello world!
<a class="ui-icon-star"> hello </a>
</a>
我使用了以下 JS:
$('.star').click(function () {
$(this).toggleClass("favorited");
$(this > '.ui-icon-star').toggleClass("ui-icon-starred");
});
更改 .star 和子 .ui-icon-star 元素,但它不适用于子元素。我的 [selector(?)] 错误在哪里?我猜大约是 $(this > '.ui-icon-star')。
1:http://jsfiddle.net/tNwND/1/2: http://www.w3.org/TR/CSS21/selector.html
最佳答案
那是因为你的标记无效,浏览器以这种方式呈现你的标记:
<a class="star">Hello world! </a>
<a class="ui-icon-star"> hello </a>
所以被点击的元素没有.ui-icon-star
子元素。
关于javascript - JQuery & 子选择器 A > B : not working ? [Chrome 24, JQmobile],我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14863982/
我是一名优秀的程序员,十分优秀!