div重新加载不在PHP中工作

时间:2013-11-16 05:55:38

标签: javascript php jquery html

我有一个购物车页面。我正在使用ajax函数将产品添加到购物车。所以我的页面不会刷新。但添加到购物车后,我需要显示您的猫中有n个项目。如果我刷新页面,它工作正常。我需要在没有refrsh我的页面的情况下这样做 我写了这个

<script>
$(document).ready(function(){
  $("#addtocartbutton").click(function(){


   $("#cartdiv").refresh();


  });
});
</script>

但不会重新删除该div。请掌舵我的朋友

2 个答案:

答案 0 :(得分:0)

很酷,所以使用http://api.jquery.com/jQuery.ajax/的理想方式是:

sucess功能中,您可以更新您的页面或div。

同样针对load问题,请查看此处Refresh/reload the content in Div using jquery/ajax

希望这能让您足以纠正ajax :)并重新加载div

中的信息

示例代码

// Assign handlers immediately after making the request,
// and remember the jqXHR object for this request
var jqxhr = $.ajax( "example.php" )
  .done(function() {
    alert( "success" );
  })
  .fail(function() {
    alert( "error" );
  })
  .always(function() {
    alert( "complete" );
  });

答案 1 :(得分:0)

使用load()之类的,

$("#cartdiv").load('page.php');