我希望我能清楚地解释我的问题。
<button type="button" class="" id="myId">
<p style="color: red;">hello</p>
</button>
如果我仅使用style
知道此标记位于<p style="color: red;">hello</p>
标记中且标识为<button>
,则如何更改标记"myId"
的属性jquery
?
答案 0 :(得分:0)
$('button#myId').find('p').css('color','red')
或强>
$('button#myId').children().css('color','red')
如果按钮内有多个元素,则必须在使用children()时具体说明。