如何使用Ajax响应创建一个mootool工具提示。任何人都可以请教我一个相同的教程。
答案 0 :(得分:1)
到目前为止你尝试了什么?
你可以这样做btw:
在parent
可翻转元素中设置data-attribute以存储网址(需要通过ajax检索工具提示),即:
<div class="tippable" data-tipurl="/some/url/">
when I mouseover here, a tip appears
</div>
然后,通过js,创建并缓存提示,即:。
$$('div.tippable').each(function(tippable){
tippable.addEvents({
'mouseenter' : function(){
if(!this.retrieve('tip')){ //first time, build tip!
var tip = new Element('div.tip');
tip.set('load',{/* options */});
tip.load(this.get('data-tipurl')); //get through ajax
tip.inject(this, 'top').setStyles({ //set tip style
position : 'absolute'
/* etc... */
});
this.store('tip', tip); //store it inside the parent
}else{ // already built, just show it
this.retrieve('tip').setStyle('display', 'block');
}
},
'mouseleave' : function(){
var tip = this.retrieve('tip'); //retrieve the tip
if(tip){ //if it's already built, hide it
tip.setStyle('display','none');
}
//otherwise, do nothing
}
});
});