即時通訊使用jQuery Dynatree插件開發一個新的網站。 這裏是我如何寫工具提示中的Dynatree圖像
var treevluData = [
{title: "Team 1", isFolder: true, tooltip: "Tooltip test", expand: true, children: [ {title: "Honda CBR",tooltip: "Tooltip test Honda CBR"} ] },
{title: "Team 2", isFolder: true, expand: true, key: "id3", children: [ {title: "BMW X3"},
{title: "Honda CRX"},
{title: "VW Golf"},
{title: "Smart ForTwo"}
]},
{title: "Team 3", isFolder: true, key: "id4", expand: true, children: [ {title: "Fiat Doblo"} ]} ];
樹工作正常,一切都OK用這樣一個例子。正如你在團隊1的第一個孩子中看到的,我設置了一個工具提示。我的問題是,如果可能,我怎麼能把一個圖像內的工具提示,所以每次你mouseover一個孩子,它會顯示一個圖像作爲工具提示而不是純文本。我知道你可以做到這一點,在HTML中,某些CSS但我不能找到如何做到這一點這個插件。
謝謝