JS 判斷特殊字元
阿新 • • 發佈:2019-01-29
var orderCode=$("#orderCode").val(); var scheduledProducedUnits=$("#scheduledProducedUnits").val(); var str=/^[^@\/\'\\\"#$%&\^\*]+$/; if(isNaN(scheduledProducedUnits)){ new PNotify({ text: '計劃生產數量必須是數字', type: 'error', styling: 'bootstrap3' }); return false; }else if(orderCode==""){ new PNotify({ text: '訂單編號不能為空', type: 'error', styling: 'bootstrap3' }); return false; }else if(/[@\/'\\"#$%&--\^*]/.test(orderCode)){ new PNotify({ text: '訂單編號包含敏感字元', type: 'error', styling: 'bootstrap3' }); return false;