光环!我是 JQuery 的新手,我正在尝试使用 QTip 制作简单的工具提示。我确定我已经按照正确的步骤操作,但工具提示似乎不起作用。这是代码:
<script type="text/javascript">
$(document).ready(function() {
$('.select-here').qtip({
content: {
text: 'tooltip here',
show: 'mouseover',
hide: 'mouseout'
},
style: {
width: 400,
height: 400
}
});
});
</script>
在我的身体里我写了这个
<div class="select-here">Text text text</div>
我错过了什么?任何人都可以帮助我吗?谢谢