我正在尝试从另一个对象访问在一个对象中声明的变量,它不起作用
我的jsfiddle
我的脚本:
$(function(){
homePage.tooltipshowhide();
homePage.hidetooltip();
});
(function( $ ){
homePage = {
tooltipshowhide:function(){
var time = 0;
$('.toggle-ttp').tooltip({html:true,placement: 'bottom',trigger: 'manual'}).tooltip('show');
time = setInterval(homePage.hidetooltip, 4000);
},
hidetooltip:function(){
clearInterval(time);
$('.toggle-ttp').tooltip('destroy');
$('.toggle-ttp').tooltip({html:true});
$('#continueBtnTop').removeClass('toggle-ttp');
}
};
})( jQuery );