使用jQuery更改标记内标记的详细信息

时间:2016-02-19 05:36:06

标签: jquery tags

我希望我能清楚地解释我的问题。

<button type="button" class="" id="myId">
<p style="color: red;">hello</p>
</button>

如果我仅使用style知道此标记位于<p style="color: red;">hello</p>标记中且标识为<button>,则如何更改标记"myId"的属性jquery

1 个答案:

答案 0 :(得分:0)

$('button#myId').find('p').css('color','red')

$('button#myId').children().css('color','red')

如果按钮内有多个元素,则必须在使用children()时具体说明。