1
我有這樣的代碼運行 -Qtip2工具提示沒有定位
$(".imgClass").each((elem,value)->
imgSrc = $(value).attr("src")
$(value).qtip({
content: "<img src=" + imgSrc + ">"
position:{
corner:{
target:'leftTop',
tooltip:'bottomRight'
}
}
})
)
的IMG顯示了罰款,但提示始終定位在目標的右下方,爲oppposed到leftTop。
我認爲這可能是一個語法錯誤 - 任何人都可以幫忙嗎? (此外,這是寫在CoffeeScript中,因此沒有; S,但我已經把括號,因爲我仍然在咖啡不清楚)
感謝
您是否正在預加載圖片? – Mottie