0

我正在尝试将元素添加到如下变量

$tooltipElement = $('#' + tooltipId);

//I want to edit p element inside the tooltipElement variable.
$tooltipElement.//<p>.css('font-size':'15');

我怎么做?非常感谢。

4

1 回答 1

3

.find

$tooltipElement.find('p').css('font-size', '15');

另外,你的意思是15px

于 2012-08-24T17:26:46.380 回答