我想知道是否有办法将PrimeFaces工具提示附加到只有<td>
且其中包含一些文字的class
元素。我正在尝试将一些工具提示附加到图例标签上。
我尝试使用jQuery
选择器来选择特定元素,但这似乎不起作用。从http://api.jquery.com/all-selector/尝试下面的脚本时,除标签外,所有内容都会被选中。
<script>
var elementCount = $( "*" ).css( "border", "3px solid red" ).length;
$( "body" ).prepend( "<h3>" + elementCount + " elements found</h3>" );
</script>