これが私のajaxコードです。ページごとに81個の製品があります...
カートに追加ボタンをクリックすると、ページの中央にdivが表示されますが、ページの最後または下部に製品を追加すると、divは常に中央に表示されますページを表示するには、ページを上にスクロールする必要があります。
私がページの一番下にいる場合のように、私がページにいる場所の結果が欲しいです。
<script type="text/javascript" >
$(function() {
$('a.addbtn').click(function(e){
e.preventDefault();
var quantity = $(this).attr("qty");
var prod_id = $(this).attr("prid");
var dataString = '&quantity=' + quantity + '&prod_id=' + prod_id;
if(quantity=='' || prod_id==''){
alert('some thing went wrong');
}
else{
$.ajax({
type: "GET",
url: "ajax_checkout.php",
data: dataString,
cache: false,
success: function(html){
$('.addcart').remove('');
$("#viewr").append(html);
}
});
}
return false;
});
});
</script>