gpt4 book ai didi

jQuery ReplaceWith 替换 div 导致重新加载

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

我正在使用 jQuery ReplaceWith 来替换可见的 <div>和另外一个。但是,由于某种原因,当我单击链接启动替换时,页面会重新加载并导致原始 <div>再次出现。这是我的 jQuery:

$(function(){
$("a#startSlide").click(function () {
$('div#leftText').replaceWith('div#slide');
});
});

为什么更换div后会重新加载?

最佳答案

您需要取消该事件,因为 anchor 单击的默认事件是更改窗口位置:

$(function(){
$("a#startSlide").click(function (event) {
event.preventDefault();
$('div#leftText').replaceWith('div#slide');
});
});

关于jQuery ReplaceWith 替换 div 导致重新加载,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7862914/

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