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/e6c2b218947598358a7a03b9aea5f21080438a46/web/js/setSelectValue.js You should set ROOT_URL correctly, otherwise the web may not work correctly.
zhky/web/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;
}
}
}