我想在输入获得焦点时显示Qtip。这是我的代码:
<script>
function inputQtip(){
alert("Test");
$('#aerobot[title]').qtip({
position: {
my: 'right center',
at: 'left center',
target: $('.aerobot'),
},
show: {
when: {
target: $('#aerobot'),
event: 'focus',
},
}
});
}
inputQtip();
</script>
它不起作用。警报弹出窗口。所以功能正在执行。这个qtip有什么问题? :(
答案 0 :(得分:1)
这段代码没什么问题。你只是忘了将它包装在document.ready函数中。
$(document).ready(function() {
inputQtip();
});