- 在我们写JSP页面的时候,可能会遇到在某种条件下需要隐藏某些jsp标签,这个时候我们就用了if else来进行判断,这个时候就会出现错误:
if(row.pay_amount < 0){
document.getElementById('excelErrorDiv').style.display = 'block';
}else{
$("#toPrintIndex").show();
}
- 解决方案
if(row.pay_amount < 0){
if($("#toPrintIndex")){
$("#toPrintIndex").hide();
}
}else{
$("#toPrintIndex").show();
}