1
如果產品的價格超過50英鎊,我正試圖創建免費送貨橫幅。如果div包含數字'x',則插入html
我嘗試:
$(function() {
if($('.num').filter(function(index){
return parseInt(this.innerHTML) > 50.00;})) {
$(document.createElement('div')).attr('id', 'freeDelivery').appendTo('.imgoffer');
$('#freeDelivery').append('<img id="freeDeliveryImage" alt="Free delivery on this item" src="https://location_of_image.png" width="70" height="70">');
}
});
我的代碼插入即使量不超過「x」的自由輸送元件。有什麼建議麼?
記得要經常使用基數:http://stackoverflow.com/questions/850341/how-do-i-work-around-javascripts-parseint-octal-behavior – adamziel