0
我正在看JQuery UI Tooltip widget's documentation for show method.試圖弄清楚如何通過調用show方法來顯示工具提示。顯示沒有懸停事件的jQuery UI工具提示
這裏是JSFiddle code that I thought would work但沒有。我不知道爲什麼。
HTML
<input id="input_box" title='display this helpful stuff for user'/>
<button id="trigger">show tooltip</button>
的JavaScript
$("#trigger").on('click', function(){
$("#input_box").tooltip({ show: { duration: 800 } });
});