2017-01-17 85 views
-1

我有一個jQuery代碼表經過if else條件與固定值比較後顯示的錯誤消息,但它不工作,我想if else條件與它的表輸入類型的值。如果條件與表輸入字段

任何人都可以檢查這個&讓我知道什麼是錯的?謝謝。

<script type="text/javascript"> 
    $(function() { 
    $('.pnm, .price, .subtot, .widtot, .perm, .tottot, .vol, .tot, .vols, .widths, .depths, .heights, .acts, .heitot').prop('readonly', true); 
    var $tblrows = $("#tblProducts tbody tr"); 
    $tblrows.each(function (index) { 
    var $tblrow = $(this); 
    $tblrow.find('.width, .carton, .depth, .height, .act, .tot, .vol, .perm').on('change', function() { 
    var height = $tblrow.find("[name=height][type=number][min=0]").val(); 
    var subCalc = parseFloat(height); 
    if (!isNaN(subCalc)) { 
    $tblrow.find('.calcheight').val(subCalc.toFixed(5)); 
    var calcTotal = 0; 
    $(".calcheight").each(function() { 
    var stval = parseFloat($(this).val()); 
    calcTotal += isNaN(stval) ? 0 : stval; 
    }); 
    $('.heitot').val(calcTotal.toFixed(5)); 
    } 
    }); 
    }); 
    }); 
</script> 

<table id="tblProducts"> 

<script type="text/javascript"> 
    var sp = $('#sellingprice').val() | 0; 
    if (sp >= 2.38) { 
     <?php echo "error with 20 STD and error with 40 STD"; ?> 
    } 
    else if (sp >= 2.69){ 
     <?php echo "error with 40 HC"; ?> 
    } 
    else 
    { 
    <?php echo ""; ?> 
    } 
</script> 
<tbody> 
    <tr> 
    <td><input type="text" class="pnm" value="First One" name="pnm" style="width:120px" /></td> 

    <td><input type="number" oninput="validity.valid||(value='');" id="sellingprice" class="height" value="0" name="height" min="0" maxlength="5" style="width:100px"/></td>  
    <td><input type="number" class="calcheight" value="" name="calcheight" style="width:100px" readonly/></td> 
    </tr> 
    <tr> 
    <td><input type="text" class="pnm" value="Second One" name="pnm" style="width:120px" /></td> 

    <td><input type="number" oninput="validity.valid||(value='');" id="sellingprice" class="height" value="0" name="height" min="0" maxlength="5" style="width:100px"/></td> 
    <td><input type="number" class="calcheight" value="" name="calcheight" style="width:100px" readonly/></td> 
    </tr> 
</tbody> 
<tfoot> 
    <tr> 
    <td></td> 
    <td></td> 
    <td><input type="number" class="heitot" value="" name="" style="width:100px" readonly/></td> 
    </tr> 
</tfoot> 
</table> 

回答

0

你有PHP代碼在JavaScript函數中運行,除非你在做一些古怪的服務器端,不會做你想做的事情。相反,將這些<?php echo ... ?>行更改爲alert(...),至少要對其進行測試。

其次,你必須:

var sp = $('#sellingprice').val() | 0; 

你會想改變這種單一|或雙||。單|是二進制「或」不符合邏輯「或」:

var sp = $('#sellingprice').val() || 0; 
+0

確定,但我將建立一個變種SP = $(「#sellingprice」)的使用VAL()| 0; – user7428613

+0

我更新了答案,顯示你應該改變它。 – Scovetta

+0

我做了你建議我的改變,但沒有改變。它不顯示任何錯誤消息,請再次檢查問候語Inders - – user7428613

相關問題