gpt4 book ai didi

jquery .html 结果

转载 作者:行者123 更新时间:2023-12-01 07:22:27 25 4
gpt4 key购买 nike

我正在对服务器页面进行 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 没有将其视为跨类?

最佳答案

您应该委托(delegate)事件,您可以使用on方法。

$(document).on({
mouseenter: function(){
alert('entered')
},
mouseleave: function(){
alert('left')
}
}, ".spanclass")

关于jquery .html 结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12300943/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com