Magento:製品ページ下jquery change関数失効Call javascript function onchange product option
1034 ワード
明らかな原因はchange関数がmagentoのデフォルトのonchange関数と衝突することです.
1つの方法は/js/varien/configurableを編集することです.jsファイル:Place call to your function just above
コアファイルを変更しないもう1つの方法は、次のとおりです.
Try
As your select-box is generated from the code, so you have to use event delegation, where in place of
Or
参照先:http://stackoverflow.com/a/19194194
原文/転入先:Magento:製品ページ下jquery change関数失効Call javascript function onchange product option on Magento product page
1つの方法は/js/varien/configurableを編集することです.jsファイル:Place call to your function just above
return;
in function reloadPrice: function()
コアファイルを変更しないもう1つの方法は、次のとおりです.
Try
$(document).on('change','#multiid',function(){
alert('Change Happened');
});
As your select-box is generated from the code, so you have to use event delegation, where in place of
$(document)
you can have closest parent element. Or
$(document.body).on('change','#multiid',function(){
alert('Change Happened');
});
参照先:http://stackoverflow.com/a/19194194
原文/転入先:Magento:製品ページ下jquery change関数失効Call javascript function onchange product option on Magento product page