Jump to content

[Resolu] bouton incrément quantité produit


frhh

Recommended Posts

Bonjour à tous,

 

N'étant pas un spécialiste en javascript, j'ai trouvé une fonction permettant d'incrémenter la quantité d'un produit dans le template product.tpl :

 

function add( nom ) {

document.getElementById( nom ).value ++;

}

function substract( nom ) {

document.getElementById( nom ).value --;

}

 

function isNumberKey(evt)

{

var charCode = (evt.which) ? evt.which : event.keyCode

if (charCode > 31 && (charCode < 48 || charCode > 57))

return false;

return true;

 

Ca fonctionne, mais le problème est qu'on peut arriver à des quantités négatives. Comment mettre une quantité minimum ?

 

Merci.

Link to comment
Share on other sites

Vous pouvez rajouter une condition avant de diminuer la quantité :

 

function substract( nom ) {

if ( document.getElementById( nom ) > 0 )

document.getElementById( nom ).value --;

}

 

Bonjour,

Merci pour votre réponse.

Mais dans ce cas, je ne peux plus diminuer la quantité du tout...

Link to comment
Share on other sites

  • 3 months later...
  • 1 year later...

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...