作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
<div class="example">
<div class="test">Some text</div>
<div class="whatever"></div>
</div>
<div class="example">
<div class="test">Some more text</div>
<div class="whatever"></div>
</div>
如何让每个 .example
的 .whatever
包含其 .test
的内容?
例如,如果代码是这样的:
<div class="example">
<div class="test">Some text</div>
<div class="whatever"></div>
</div>
然后我可以这样做:
$('.whatever').text($('.test').text());
但我有多个类为 .whatever
的元素和多个类为 .test
的元素,并且每个 .test
包含不同的文本.
所以换句话说,我怎样才能使类 .whatever
的每个元素都包含元素 .test
的文本,但只包含元素 。在示例
?.example
元素中测试
抱歉措辞困惑。
最佳答案
尝试:
$('.example').each(function() {
$(this).find('.whatever').html( $(this).find('.test').html() );
});
关于javascript - 同类(class)的多个 parent 与同类(class)的 sibling ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10568696/
所以我有这个 UltraTicTacToe 游戏,我正在用 HTML/CSS/JS 编码。它由表中表中的表组成。当您单击 X 或 O 时,我想要突出显示您应该进入的下一个 TicTacToe 牌 ta
Some text Some more text 如何让每个 .example 的 .whatever 包含其 .test 的内容? 例如,如果代码是这样的: Som
我是一名优秀的程序员,十分优秀!