我正在嘗試使用jQuery UI工具提示,我想我可能會丟失一些東西。簡單的jQuery UI工具提示沒有標題屬性
我想要最簡單的工具提示,而不指定title屬性。
我相信我應該能夠在我的JavaScript幾乎任何地方撥打此:
$('#ContactName').tooltip({ content: 'Hey, look!' }).tooltip('open');
這是行不通的。難道我做錯了什麼?
編輯:我應該提及#ContactName是一個輸入[type = text],它在jQuery UI對話框中。
編輯2:好的,這工作。雖然我不明白爲什麼。
$($('#ContactName').parent()).tooltip({
items: '#ContactName',
content: 'Hey, look!'
});
它適用於懸停。無論如何,我可以用相同的代碼立即打開它?
編輯3:這是我結束了:
$($('#ContactName')).tooltip({
items: '#ContactName',
content: $(this).text(),
position: {
my: 'left+15',
at: 'right center'
},
tooltipClass: 'ui-state-error'
}).tooltip("open");
參見:http://forum.jquery.com/topic/jquery-ui-tooltips-require-a-title-tag – KyleMit