If quantity(qty) is greater then 1 so this green update button show otherwise disable. How can I do this in Magento 2?

magento.stackexchange https://magento.stackexchange.com/questions/283026

  •  08-03-2021
  •  | 
  •  

문제

so this gr

If qty greater then 1 so this green update button show otherwise disable. How can I do this in magento2

도움이 되었습니까?

해결책

use simple jQuery code on Click event of Up-Down arrow to make it work.

<script>
var qty = jQuery('#qty').val();
if(qty > 0){ 
    jQuery("#product-addtocart-button").attr("disabled", true);
}else{
    jQuery("#product-addtocart-button").attr("disabled", false);
}
</script>
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 magento.stackexchange
scroll top