我無法通過qTip替換瀏覽器的默認工具提示。到目前爲止,我有:qTip替換瀏覽器的Tooptip
$('[title]').each(function(){
var cont = $(this).attr('title');
if(cont != ''){
$(this).qtip({
content: cont,
style: {
background: '#FFFFCC',
color: '#000000',
name: 'cream' ,
border: {
radius: 4,
color: '#FCC200'
},
textAlign:'center',
tip: {
corner: 'bottomLeft',
size: {
x: 20,
y: 8
}
}
},
position: {
corner: {
target: 'topRight',
tooltip: 'bottomLeft'
}
}
});
}
});
但實際上在瀏覽器中我得到:
我真的很感謝你的幫助。
謝謝。
非常感謝。 – 2012-03-31 13:53:39