Есть корзина покупателя! Как ее доработать чтоб сумироваль сумма покупки и даные также вводились на другую форму тоесть при нажатии на сылку корзина например все что бфло быбрано было в табличной форме!
<html>
<head>
<style type="text/css">
.sel_items {margin: 0px;}
</style>
<script type="text/javascript">
<!--
toBuy = new Array();
Count = new Array();
bSumm = new Array();
function buy(item){
var tb = false;
for(i=0;i<toBuy.length;i++){
if(toBuy[i]==item){
tb = true;
break;
}}
if(!tb){
toBuy[toBuy.length] = item;
Count[Count.length] = 1;}
else{
Count[i]++;
}
if(!bSumm[item] && bSumm[item]!=0){
bSumm[item]=0;
document.getElementById("selected_items").innerHTML += "<p class='sel_items' id='s"+item+"'>"+document.getElementById(item).getAttribute("info")+" Кол-во: "+bSumm[item]+", <a style=\"cursor:pointer;\" onclick=\"unBuy('"+item+"')\">Убрать</a></p>";
}
bSumm[item]++;
document.getElementById("s"+item).innerHTML = document.getElementById(item).getAttribute("info")+" Кол-во: "+bSumm[item]+", <a style=\"cursor:pointer;\" onclick=\"unBuy('"+item+"')\">Убрать</a>";
document.getElementById("s"+item).style.display="";
}
function unBuy(item){
bSumm[item]--;
if(bSumm[item]==0){
document.getElementById("s"+item).style.display = "none";}else{
document.getElementById("s"+item).innerHTML = document.getElementById(item).getAttribute("info")+" Кол-во: "+bSumm[item]+", <a style=\"cursor:pointer;\" onclick=\"unBuy('"+item+"')\">Убрать</a>";
}
for(i=0;i<toBuy.length;i++){
if(toBuy[i]==item){
Count[i]--;
break;
}}}
function doBuy(){
if(Count.length>0){
for(i=0;i<toBuy.length;i++){
child = document.createElement("input");
child.type = "hidden";
child.name = "buyItem"+toBuy[i];
child.value = Count[i];
document.forms.dobuy.appendChild(child);
}
document.forms.dobuy.submit();
}else{
alert("Вы ничего не выбрали!");
}}
function page(url){
document.forms.other_page.action=url;
for(i=0;i<toBuy.length;i++){
child = document.createElement("input");
child.type = "hidden";
child.name = "buyItem"+toBuy[i];
child.value = Count[i];
document.forms.other_page.appendChild(child);
}
document.forms.other_page.submit();
}
</script>
</head>
<body>
<a onclick="page('magnitols.php');">Магнитолы</a> <a onclick="page('samolets.php')">Самолеты</a> <a onclick="page('chemodans.php')">Чемоданы</a>
<hr>
Ваши товары:<div id="selected_items"></div>
<hr>
Товары для покупки:<br>
<a onclick="buy(this.id)" id="i1" info="Товар номер один.">Товар номер 1</a><br>
<a onclick="buy(this.id)" id="i2" info="Товар номер два.">Товар номер 2</a><br>
<a onclick="buy(this.id)" id="i3" info="Товар номер три.">Товар номер 3</a><br>
<a onclick="buy(this.id)" id="i4" info="Товар номер четыре.">Товар номер 4</a><br>
<a onclick="buy(this.id)" id="i5" info="Товар номер пять.">Товар номер 5</a><br>
<hr>
<a onclick="doBuy()">Купить выбранные</a>
<form action="скрипт_покупки.php" method="post" name="dobuy" style="display:none;"></form>
<form method="post" name="other_page"></form>
</body>
</html>