gpt4 book ai didi

jquery - 动态创建选项卡时如何禁用重新加载?

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

我使用 jQuery 动态创建选项卡,但每次单击一个选项卡时,它都会再次重新加载目标 URL。我应该如何禁用重新加载行为,除非我希望它再次重新加载?非常感谢。

最佳答案

使用event.preventDefault():

$('a.tab').click(function(event) {
event.preventDefault(); // this is the key
// your code here
});

编辑:关于您的评论 - 只是 set cache to true :

$(document).ready(function() {
$apTabs = $("#apTabs").tabs({
// ...
cache: true, // this does the magic
// ...
});
});

关于jquery - 动态创建选项卡时如何禁用重新加载?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/772447/

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