在这里我有这个代码:
$(function() {
$( document ).tooltip({
items: ".draggable ui-draggable ui-resizable",
track: true,
content: function(){
var time = $( this ).width();
if(time<0) {
time = 0;
}
var seconds = time%60;
var minutes = (time-seconds)/60;
var output;
if(minutes >= 10) {
output = ""+minutes;
} else {
output = "0"+minutes;
}
output += ":";
if(seconds >= 10) {
output += seconds;
} else {
output += "0"+seconds;
}
return output;
}
});
});
.draggable
类也是可拖动和调整大小的,我需要在工具提示中显示动态更改的内容(时间 hh/min)
如何动态更改工具提示中的内容?
演示:http: //jsbin.com/erofot/119
为什么当我调整 div 大小时工具提示内容不会动态变化?