想要顯示工具提示動態數據點擊 已經嘗試了很多插件,但沒有達到我的目標。jquery動態工具提示
這裏我的代碼:
<script type="text/javascript">
$(document).ready(function() {
$("#tbl td").click(function() {
$.ajax({
type: "POST",
url: '@Url.Action("GetCellData")',
dataType: 'JSON',
data: {
time: $(this).parent().children().index($(this)),
name: $('td:first', $(this).parents('tr')).text(),
type: $('input[name="t"]:checked').val()
},
success: function (response) {
///
/// HERE I NEED TO SHOW TOOLTIP
///
}
});
});
});
我需要使用回調 '響應',以顯示它的提示,在MUSE點擊單元格。 可以請你推薦我插件,爲我的問題。