gpt4 book ai didi

jquery - 如何在点击事件上调用 jQuery AJAX?

转载 作者:行者123 更新时间:2023-12-03 22:45:54 28 4
gpt4 key购买 nike

我制作了一个 jQuery 模型。

我尝试在该模型内使用 AJAX 填充数据。

我正在获取一个 ID,并使用它来使用 AJAX 填充数据。

如何在点击事件上调用 AJAX?

模型打开或加载时是否有其他事件?

模型只是div的显示和隐藏。

最佳答案

简单地使用:

JS:

$(document).ready(function(){
$('a.pop').click(function() {
var popID = $(this).attr('rel');
$.get('content.php', { ref:popID }, function(data) {
$(popID+'Container').html(data);
$(popID).dialog();
alert('Load was performed.');
});
return false; // prevent default
});
});

HTML:

<div id="example" class="flora" title="This is my title">
I'm in a dialog!
<div id="exampleContainer"></div>
</div>
<a href="#" id="clickingEvent" class="pop" rel="example">click to launch</a>

它尚未经过测试,但据我所知,它应该可以工作......

关于jquery - 如何在点击事件上调用 jQuery AJAX?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3610525/

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