jQuery添加没有标记的CSS属性

时间:2013-01-31 21:41:48

标签: javascript jquery html css css3

我有一个可以动态生成标记的网站(Wordpress3.5),因此我无法直接将数据工具提示添加到html中。因此我试图通过Javascript添加属性。在提供的小提琴中我添加了一些示例HTML,有人可以帮助这个fiddle尝试成功地将“工具提示”添加到标记或解释为什么我的脚本当前不工作?感谢。

// set the tooltip content
jQuery('li#menu-item-75 a:hover:before').prop('tooltipText', 'w00t');
jQuery('li#menu-item-75 a:hover:after').prop('tooltipText', 'w00t');

1 个答案:

答案 0 :(得分:0)

使用数据方法(http://api.jquery.com/data/)来读取和设置数据:

$("#myelement").data("tooltip", "my tooltip text");