使用 jQuery 选择子元素
我正在尝试使用 jQuery 快速选择页面上的元素。这是到目前为止的代码:
$('#row-58708 > div.cell name > div > strong').html('tesing');
这是标记:
<div id="row-58708" class="row">
<div class="cell name">
<div>
<strong>Skin name</strong>
</div>
</div>
</div>
我知道我写的内容离目标很远,但无论如何我都无法解决......任何人都可以伸出援手吗?干杯!
I'm trying to quickly select an element on my page using jQuery. This is the code so far:
$('#row-58708 > div.cell name > div > strong').html('tesing');
This is the markup:
<div id="row-58708" class="row">
<div class="cell name">
<div>
<strong>Skin name</strong>
</div>
</div>
</div>
I know what I've written is far off the mark, but I can't work it out anyhow... could anyone lend a hand? Cheers!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
实际上,您离得并不远,只是没有正确使用多类选择器:
在您的版本中,您有
div.cell name
,其字面意思是“选择所有name 类单元格内的标签。”当然,没有名牌,但你明白这一点。
You're actually not far off, you're just not using the multiple class selector correctly:
In your version, you have
div.cell name
, which literally means "select allname
tags that are within a div of class cell." Of course, there is no name tag, but you see the point.检查工作示例 http://jsfiddle.net/gZA8E/
Check working example at http://jsfiddle.net/gZA8E/
我认为您想将皮肤名称更改为测试。如果是这样使用这个:
I take it you want to change Skin name to testing. If so use this: