如何从asp.net中的jquery模态弹出窗口更新标签值

发布于 2024-11-14 06:12:05 字数 399 浏览 1 评论 0原文

我有一个页面,product.aspx。在此页面内,我有一个标签,显示添加到购物篮的产品数量。我还有 viewcart.aspx 页面来显示我的购物车项目并编辑或删除产品。

一切都很好,但是当我从 viewcart.aspx 中删除产品时,我想减少 Product.aspx 上的标签值。我怎样才能做到这一点?

我使用这个 jQuery 在模态弹出窗口上显示 viewcart.aspx: http://deseloper.org/examples/simple-modal-redux/

我也尝试使用

Label lbl = (Label)this.PreviousPage.FindControl("countlbl");

我该如何解决这个问题?

I have a page, product.aspx. Inside this page I have a label that shows the count of products added to basket. I also have viewcart.aspx page to show my cart item and edit or delete product.

Everything is well but when I delete a product from viewcart.aspx, I want to decrement the label value on product.aspx. How can I do that?

I use this jQuery to show viewcart.aspx on modal popup:
http://deseloper.org/examples/simple-modal-redux/

also I've tried to use

Label lbl = (Label)this.PreviousPage.FindControl("countlbl");

How can I solve this problem?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

回首观望 2024-11-21 06:12:05

在 viewcart.aspx 页面中,您可以添加一些 jQuery 以在关闭时触发(即在 onUnload 事件上):

$(window).unload(function() {
  window.opener.$("#product_count_label").html("new count of products");
});

In the viewcart.aspx page, you could add some jQuery to fire when it closes (i.e. on the onUnload event):

$(window).unload(function() {
  window.opener.$("#product_count_label").html("new count of products");
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文