我正在尝试使用 zurb 基础工具提示脚本而不为我的站点加载任何其他基础库,但是当我尝试加载它时,它会抛出这个 js 错误。
我的标记看起来像这样:
<span class="has-tip tip-right" data-width="200" title="This is a tip">This is a tip</span>
<script src="js/jquery.js"></script>
<script src="js/jquery.foundation.tooltips.js"></script>
<script src="js/app.js"></script>
JS错误:
Uncaught TypeError: Object [object Object] has no method 'tooltips' app.js:5
(anonymous function) app.js:5
fire jquery.js:1075
self.fireWith jquery.js:1193
jQuery.extend.ready jquery.js:435
DOMContentLoaded jquery.js:949
这是我加载脚本的方式
(function ($) {
$(function(){
// initialize tooltips
$(document).tooltips();
});
})(jQuery);
有谁知道为什么会这样?