gpt4 book ai didi

javascript - Uncaught TypeError : $(. ..).tooltip is not a function 错误

转载 作者:行者123 更新时间:2023-11-30 06:52:29 25 4
gpt4 key购买 nike

我正在尝试将此代码与这些工具提示一起使用。在这个链接中:Code with tooltip .事实上,我只是复制了整个代码,但它现在可以工作了。我收到一条错误消息,内容为 Uncaught TypeError: $(...).tooltip is not a function error:

<link rel="stylesheet" href="//code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css">
<script src="//code.jquery.com/jquery-1.10.2.js"></script>
<script src="//code.jquery.com/ui/1.11.4/jquery-ui.js"></script>
<link rel="stylesheet" href="/resources/demos/style.css">

<script>
$(function() {
$(document).tooltip({
position: {
my: "center bottom-20",
at: "center top",
using: function(position, feedback) {
$(this).css(position);
$("<div>")
.addClass("arrow")
.addClass(feedback.vertical)
.addClass(feedback.horizontal)
.appendTo(this);
}
}
});
});
</script>

这里缺少什么?

编辑:

<script>
jQuery( document ).ready(function( $ ) {
$('.hasTooltip').tooltip();
});
</script>

这样用,解决了我的问题!

最佳答案

您为不同版本包含了两次 jQuery UI。这可能会导致冲突。尝试删除

<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.10.3/jquery-ui.min.js"></script>

关于javascript - Uncaught TypeError : $(. ..).tooltip is not a function 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34290847/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com