我有一个问题是使用jQuery effect()函数在图像上创建一个反弹效果.实际上是使用这段代码(调用jQuery库后的代码):
$(document).ready(function() {
$('#arrow-disclaimer').bind('mouseenter', function(){
$(this).effect('bounce',500);
});
});
//Here there isn't the jQuery library, but in the page is included before jqueryUI
有人能告诉我为什么会出现这个错误吗?
未捕获的TypeError:$(...).效果不是函数
Tushar.. 5
您需要加载jQuery才能使用jQuery-ui或任何其他依赖插件
您使用的jquery-ui-i18n
仅用于国际化.你需要包含jquery-ui
主库,如果你想使用i18n,请在jquery-ui之后包含它.
bind
在jQuery 1.7版中弃用,请使用on
.
$(document).ready(function() {
$('#arrow-disclaimer').on('mouseenter', function() {
$(this).effect('bounce', 500);
});
});
您需要加载jQuery才能使用jQuery-ui或任何其他依赖插件
您使用的jquery-ui-i18n
仅用于国际化.你需要包含jquery-ui
主库,如果你想使用i18n,请在jquery-ui之后包含它.
bind
在jQuery 1.7版中弃用,请使用on
.
$(document).ready(function() {
$('#arrow-disclaimer').on('mouseenter', function() {
$(this).effect('bounce', 500);
});
});