我正在尝试在工具提示onShow事件中使用一个函数。我确信它简单明了,但我无法让它发挥作用。我在这里缺少什么?
$("input[title]").tooltip({
onShow: function() {
$('.tooltip').css({'cursor':'crosshair', 'border-style':'dashed'}).click(function () {
alert();
});
},
offset: [120, 0]
});
提前谢谢