我正在使用:
jQuery Bubble Popup v.2.3.1
http://maxvergelli.wordpress.com/jquery-bubble-popup/
您应该准备好此文档:
$('.bubble').CreateBubblePopup({
align: 'center',
innerHtml: 'TEXT GOETH HERE!', // THIS IS THE LINE
innerHtmlStyle: {
color: '#FFFFFF',
'text-align': 'center'
},
themeName: 'all-black',
themePath: 'plugins/bubble/themes'
});
您必须明确地将鼠标的文本设置为...是否可以将文本设置为alt属性的元素?甚至更好的是,元素上的自定义属性?就像是:
innerHtml: this.attr("alt"),
但这不起作用,因为未定义“ this”
最佳答案
在文档准备功能中:
$('.bubble').each(function(){
$(this).CreateBubblePopup({
align: 'center',
innerHtml: $(this).attr('mouseoverText'),
innerHtmlStyle: {
color: '#FFFFFF',
'text-align': 'center'
},
themeName: 'all-black',
themePath: 'plugins/bubble/themes'
});
});
关于javascript - jQuery弹出工具提示,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/5252779/