我是Magento和PHP的新手,但我想将custom option
的{{1}}设置为
input field
,
定义字段中可以允许的type= "number"
和min
号码
如果数字超出max
和min
(最好是JavaScript)
但是,输入的默认自定义选项只有:the screenshot of the input type options available
拜托,我该如何解决这个问题?
答案 0 :(得分:0)
试试这个:
<input type="number" id="qinput-<?php echo $_item->getId(); ?>" data-link="<?php echo $this->getAjaxUpdateUrl() ?>" data-item-id="<?php echo $_item->getId(); ?>" class="qty cart-item-quantity input-text input_qty" name="" min="1" value="<?php echo $this->getQty() ?>" />
这是minicart输入字段的示例,min = 1,您也可以为它设置max。你甚至不必在这里使用js,因为它的值不会小于1。