修改app_topic_domain自定义域的id为WEB_ID;

This commit is contained in:
DuanDongmei
2018-12-08 18:37:14 +08:00
parent a30bd855dd
commit 9ac32fe3ff
4 changed files with 6 additions and 5 deletions

View File

@@ -107,11 +107,11 @@ $(function(){
+'<option value=""><spring:message code="select"/></option>';
if(data.length>0){
for(i=0;i<data.length;i++){
html+='<option value="'+data[i].cfgKeywords+'"';
if('${_cfg.cfgKeywords}'==data[i].cfgKeywords){
html+='<option value="'+data[i].domain+'"';
if('${_cfg.cfgKeywords}'==data[i].domain){
html+=" selected";
}
html+='>'+data[i].cfgKeywords+'</option>';
html+='>'+data[i].domain+'</option>';
}
html+='</select>';
$("#selectDomain").html(html);