我不知道javascript,所以无论如何这可能是在错误的轨道上。我有可以通过单选按钮选择的运输方式。如果选择了某种运输方式,我正在尝试创建警报,但是单选值会根据可用的运输选项而变化。
<label id="shippingMethod"><input type="radio" name="selectedShippingMethod" id="shippingCheck" value="5"> <span class="ShipperName">Collect Shipping</span> <em class="ShipperPrice ProductPrice">$0.00</em></label>
这是我正在尝试使用的警报代码
$(document).ready(function(){
$('input:radio[name="selectedShippingMethod"]').change(function() {
if ($(this).val() == '5'){
alert('ALERT TEXT TO POPUP');
}
});
});
有没有一种方法可以使它基于ShipperName
“收集运费”而不是无线电值触发警报,或者有更好的方法来开始这样做。