我有由 jquery 填充的 gridview。下面是我的代码的一部分,它给出了上述错误:
var codes = $(this).find("Code").text();
$("td", row).eq(6).html($(this).find("oTotal").text());
if ($(this).find("Stock").text() == 'Y') {
$("td", row).eq(7).html('<a href="#" class="tooltip" title="This is my divs tooltip message!" id="' + codes + '" style="text-decoration:none">Y</a>');
$('#' + codes).live('click', function () {
$('#' + codes).tooltip();
});
}
else {
$("td", row).eq(7).html($(this).find("Stock").text());
}
我在 $('#'+ 代码).tooltip(); 上遇到错误 我有 jquery.ui/1.8.22 和 jquery/1.8.3。