gpt4 book ai didi

jquery - 如何使用jQuery的replaceWith()顺利替换它

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

代码:

$(document).ready(function() {
var replace_div = '<div><input/></div>';
$('#btn_test').click(function() {
$('#btn_test').fadeOut('', function() {
$('#btn_test').replaceWith(replace_div);
});
});

});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>

<div style="padding: 40px;">
<button id="btn_test">test_btn</button>
</div>

更换时有一定的刚性。

我认为有一个很好的方法来使用fadeIn(),但不知道该怎么做。

你能帮我顺利更换吗?

最佳答案

该 div 首先需要隐藏才能应用淡入。 div 位于另一个 div 内,因此您可以使用 $( 选择它'div > div') 并对其使用隐藏功能,然后使用淡入,然后瞧。

var replace_div = '<div><input/></div>';
$('#btn_test').click(function () {
$('#btn_test').fadeOut('', function () {
$('#btn_test').replaceWith(replace_div);
$('div > div').hide().fadeIn(1000);
});
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div style="padding: 40px;">
<button id="btn_test">test_btn</button>
<br>
</div>

关于jquery - 如何使用jQuery的replaceWith()顺利替换它,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48475757/

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