Your ROOT_URL in app.ini is http://git.zky.com/ but you are visiting http://61.178.84.89:8998/luoluo/zhky/src/commit/a6efc2e753bd7cc7eea0a94adf34a87396596d7b/out/artifacts/zhyw_war_exploded/js/setSelectValue.js You should set ROOT_URL correctly, otherwise the web may not work correctly.
zhky/out/artifacts/zhyw_war_exploded/js/setSelectValue.js

9 lines
238 B

function setValue() {
var selectObj = document.getElementsByTagName("SELECT");
for (var i=0; i<selectObj.length; i++) {
var v = selectObj[i].setValue;
if ( v != undefined && v!= "" && v!="null") {
selectObj[i].value = v;
}
}
}