Your ROOT_URL in app.ini is http://git.zky.com/ but you are visiting http://61.178.84.89:8998/luoluo/zhky/blame/commit/3fc79397d6b3e4c1865f210578f2d97f5aa17da1/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

1 year ago
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;
}
}
}