当客户选择"本地取件时,我试图弹出警报。作为确认他们真正想要的运输方法。这是我尝试过的代码,但它不起作用:
jQuery(document).ready(function(){
var localPickupMsg = 'alert message text will go here';
jQuery('input:radio[name="shipping_method"]').change(function() {
if (jQuery(this).val() == 'local_pickup'){
alert(localPickupMsg);
}
});
});
答案 0 :(得分:0)
不推荐使用:radio
选择器。
使用
input[type=radio][name=shipping_method]