我正在使用使用 ID 作为元素的原型工具提示。我在页面中的工具提示更多,因此它不允许我在页面中使用相同的 ID 超过一次。有没有办法使用 CLASS 作为元素而不是 ID?这就是我所拥有的。
<div style="margin-right: 2px" id="tooltip_bio" class="">Learn More</div>
<script type="text/javascript" language="javascript">
new Tip('tooltip_bio', "Tooltip Content", {
title: "Bio",
closeButton: true,
showOn: 'click',
hideOn: { element: 'closeButton', event: 'click'},
stem: 'bottomMiddle',
hook: { target: 'topMiddle', tip: 'bottomMiddle' },
offset: { x: 0, y: -2 },
width: '300px'
});
</script>