You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
510 B
15 lines
510 B
setTimeout(function () {
|
|
//报警类型
|
|
var EXTENDCODE1 = $("#EXTENDCODE1").val();
|
|
if (EXTENDCODE1 == "0") {
|
|
$("#EXTENDCODE1").val("超期未归");
|
|
} else if (EXTENDCODE1 == "1") {
|
|
$("#EXTENDCODE1").val("不假外出");
|
|
} else if (EXTENDCODE1 == "2") {
|
|
$("#EXTENDCODE1").val("非法外出");
|
|
} else if (EXTENDCODE1 == "3") {
|
|
$("#EXTENDCODE1").val("超速");
|
|
} else if (EXTENDCODE1 == "4") {
|
|
$("#EXTENDCODE1").val("超界");
|
|
}
|
|
}, 1000);
|