我目前正在尝试填写表格中的一些字段。我正在做一个测试 ifextnReason
和extnDt
are null
,我什么也不做。但由于某种原因,它不断输入支票并用 加载我的字段null
,这是我不想要的。
function preloadFields() {
//these values are coming in as null
var extnReason = '<%=extnReason%>';
var extnDt = '<%=extnDt%>';
//set Extension Date blank on load
$('#extnDt').val("");
alert("reason ++++ " + extnReason);
alert("extnDt ++++ " + extnDt);
//it is entering these tests but I don't want them to
if(extnReason != null || extnReason != "null"){
console.log("entered reason");
$('#extnReason').val(extnReason);
}
if(extnDt != null || extnDt != "null") {
console.log("entered extnDt");
$('#extnDt').val(extnDt);
}
}
任何帮助将不胜感激!