我正在对服务器页面进行 ajax 调用,并通过 html 方法在 div 中打印结果:
$(document).ready(function()
{
$.ajax
({
async:false,
type: 'GET', cache: false,
url: '..urlhere..',
success: function(data){printresult(data);}
});
});
使用打印结果(数据):
$("thediv").html(data);
这一切都有效,但结果本身包含类跨度。这些跨度在悬停时应该发出简单的警报。我也在 document.ready 中实现了这一点:
$(".spanclass").hover(function ()
{
alert('j');
});
这不起作用..是因为结果来自 ajax 并且 DOM 没有将其视为 spanclass 吗?