gpt4 book ai didi

javascript - 如何在动画中显示 jQuery.show()

转载 作者:太空宇宙 更新时间:2023-11-04 14:01:51 27 4
gpt4 key购买 nike

在这段代码中,当我点击按钮时,DIV 显示为从左上角翻转。

$( "#mybutton" ).click(function() {
$( "#mydiv" ).show("slow");
});

<input type="submit" value="click" id="mybutton" />
<div id="mydiv" style="height:50px; width:50px; background-color:#000; display:none;">test</div>

如何在以下场景中获得相同的效果?

$(document).ready(function () {
window.showim = function(src) {
$("#divcont1").html(src);
};
});

我试过了但是没用

$(document).ready(function () {
window.showim = function(src) {
$("#divcont1").html(src).show('slow');
};
});

HTML代码

<span class="spcusr" onclick="showim('<h1>I should be displayed now</h1>');">PARIS</span>
<div id="divcont1"></div>

最佳答案

剧本是你期待的吗?如有不妥请见谅

$(document).ready(function () {
window.showim = function(src) {
$("#divcont1").hide().html(src).show('slow');
};
});

关于javascript - 如何在动画中显示 jQuery.show(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21453215/

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