Jump to content
  • 0

Помогите найти ошибку.


McLotos
 Share

Question

Добрый вечер!

Есть проект http://test.tvshop-kz.com. Когда посетитель нажимает на "В корзину" появляется корзина, которая показывает количество товара и общую стоимость.

Но есть два странных момента:

1.Не все товары можно добавить в корзину, при попытке добавить некоторые товары, вместо них добавляется какой-то другой.

2.Если в аттрибут id товара вставлять его id а не имя, то добавление вообще не работает. Подскажите куда копать.

function incart(id,val){  var checkboxes = document.getElementsByTagName('input');  var sum=0;  var carted = 0;  var l = checkboxes.length;    for (var i=0; i < l;i++) {        var checkbox = checkboxes[i];        if (checkbox.type == 'checkbox') {           if(checkbox.checked==1)            {sum=sum+=parseInt(checkbox.value);             carted=carted+1;}     }  }  if(sum>0)  {document.getElementById('cart').style.display="block";}else  {document.getElementById('cart').style.display="none";}  document.getElementById('cart').innerHTML = "Товаров в корзине: <b>" + carted + "</b></br>Общая сумма: <b>"+sum+"</b>";}
Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0
Корзина вообще не появляется!

 

Ну либо у вас браузер не поддерживает, либо просто поймали такой момент когда я её редактировал

И это как раз проявление п.2 первого поста

Разобрался. W3C рулит =))))

Оказывается:

нельзя использовать кириллицу в id

нельзя чтобы id было числом

нельзя чтобы id начиналось с числа

нельзя чтобы в id была точка, можно только _ или -

Edited by McLotos
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy