gpt4 book ai didi

JQuery 淡入延迟淡出

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

我正在尝试淡入 div,将其在屏幕上保留几秒钟,然后淡出。问题是它在屏幕上停留的时间并没有我预期的那么长,即使设置延迟大约 10 秒,它也只是短暂地在屏幕上停留。我已经阅读了很多帖子并尝试了很多东西,例如 settimeout,但我不会很快。

这是我的脚本:

<script type="text/javascript">
function pageLoad() {
$("[id*=lnkSelect]").live("click", function () {
var price = $("#price").html($(".prodprice", $(this).closest('tr').prev().children ('td.prodpricelabel')).html());
var code = $("#code").html($(".prodcode", $(this).closest('tr').prev().prev().children ('td.prodcodelabel')).html());
//Build the new HTML
$(code).prepend("<br/>Item: ");
$(code).append("<br/>Has been<br/>added to your cart.<br/>Price: ");
$(".tooltipleft").html(code); //Set the new HTML
$(".tooltipleft").append(price);
$(".tooltipleft").fadeIn('slow').delay(5000).fadeOut('slow');
});
};
</script>

因此,我从 html 中获取产品代码和价格,修改 div 中的 html,然后将其淡入淡出,作为商品已添加到购物车的通知。

这是我想要淡入的div:

<div class="tooltipleft" id="tooltip">
<span id="code"></span><span id="price"></span>
</div>

以及网格中的按钮:

<asp:ImageButton ID="lnkSelect" runat="server" ImageUrl="~/Buttons/add_to_cart.png"
AlternateText="Add To Cart" CommandArgument='<%# Eval("ProductID") %>' CommandName="Add"
ImageAlign="Right" />

最佳答案

做这样的事情:http://jsfiddle.net/LJsNG/1/

$(function () {
$('.tooltipleft').fadeIn('slow', function () {
$(this).delay(5000).fadeOut('slow');
});
});

关于JQuery 淡入延迟淡出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14304473/

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