0

我在我的 HTML 中调整我的 jquery 实现以及我的网站的结构方式,我真的无法$调用 m1 段落。我试过了$('p[.m1]'),但它不起作用。我也试过推杆$('#top #one .classone p.m1'),还是没有结果。有人知道解决方案吗?

<div id="top">
<div id="one">
    <div class="classone">
        <p class="m1"></p>
    </div>
</div>
</div>

$('p[.m1]').html(scn[0]);   
4

4 回答 4

1

演示在这里

$('#one > div.classone').find('p.m1').html(scn[0]);

不确定您的站点结构以及需要多少个选择器。我的代码检查pwith class .m1inside a divwith class classoneinside #one

于 2013-07-26T16:40:41.590 回答
0

使用它:

$('#one').find('p.m1').html(scn[0]);
于 2013-07-26T16:39:00.757 回答
0

呃,不。

尝试这个:

$("p.m1").html();

或者

$(".m1").html();

[]用于属性选择器。

于 2013-07-26T16:39:47.410 回答
0

这应该可以正常工作

$("p.m1").html();
于 2013-07-26T16:40:16.480 回答