3
我試圖根據錨標記的id屬性調用不同的工具提示。我的JavaScript代碼如下:jquery - 從函數調用中獲取html屬性
$(function()
{
$('.tippy').qtip(
{
content: {
url: "http://mydomain.com/product/mini/" + $(this).attr("id") // doesn't work
},
hide: { when: 'mouseout', fixed: true },
position: {
corner: {
target: 'bottomRight',
tooltip: 'topLeft'
}
}
});
});
我的HTML代碼如下所示:
<div>this is the text and I would like to reference the <a href="product.php" class="tippy" id="123456">superproduct</a> with qtip.</div>
我很堅持,你能不能幫我個忙好嗎?
@webcanguro:不客氣。如果它對你有幫助,你應該接受這個答案。 – 2010-07-17 18:34:43