本帖最后由 Event 于 2017-1-28 18:00 编辑
进到Discuz目录下
upload/template/default/common/report.htm
这个文件中
大约37行
复制代码
修改为
复制代码
进到Discuz目录下
upload/template/default/common/report.htm
这个文件中
大约37行
- reasonstring += '<label><input type="radio" name="report_select" class="pr" onclick="$(report_other).style.display=' + (i < reasons.length -1 ? 'none' : '') + ';$(report_msg).style.display=' + (i < reasons.length -1 ? 'none' : '') + '" value="' + reasons[i] + '"> ' + reasons[i] + '</label><br />';
修改为
- reasonstring += '<label><input type="radio" name="report_select" class="pr" onclick="' + (i < reasons.length -1 ? '$(\'report_message\').innerHTML=this.value;' : '') + '$(report_other).style.display=' + (i < reasons.length -1 ? 'none' : '') + ';$(report_msg).style.display=' + (i < reasons.length -1 ? 'none' : '') + '" value="' + reasons[i] + '"> ' + reasons[i] + '</label><br />';
试试看吧,上次你给的方案反倒是整个编辑器烂了