在Discuz移动端显示表格颜色的问题,可以通过以下技术方案解决:
1. CSS媒体查询适配方案
在移动端模板的CSS文件(通常为template/模板目录/style/style.css)中增加:
- @media screen and (max-width: 768px) {
- .wp td[bgcolor],
- .wp td[style*="background-color"] {
- background-color: inherit !important;
- }
- }
复制代码
* 该方案通过继承PC端设置的背景色值,保留移动端颜色显示
2. 编辑器增强方案
在source/plugin/目录下创建移动端表格渲染插件:
- // hook输出前处理
- Hook::addHook('output', function(&$content){
- if(WAP === 1){
- $content = preg_replace_callback('/<table([^>]*)>/i', function($matches){
- return '<table'.$matches[1].' style="table-layout:fixed;word-break:break-all;">';
- }, $content);
- }
- });
复制代码
3. 模板层渲染方案
修改移动端模板的forum/viewthread_node.htm文件:
- <!--{if $post['message']}-->
- <div class="postmessage">
- <!--{if helper_access::check_module('mobile')}-->
- <style>
- .plc table td {
- background-color: inherit !important;
- min-width: 3em;
- }
- </style>
- <!--{/if}-->
- $post[message]
- </div>
- <!--{/if}-->
复制代码
4. 颜色安全渲染方案(防色值丢失)
在移动端公共JS中增加:
- $(window).on('load', function(){
- $('td[bgcolor]').each(function(){
- let color = $(this).attr('bgcolor');
- if(!color.match(/^#?([a-f0-9]{3}|[a-f0-9]{6})$/i)) return;
- $(this).css('background-color', color);
- });
- });
复制代码
注意事项:
1. 表格建议使用短代码模式:
- [table=100%,#FF0000]
- [tr][td]内容[/td][/tr]
- [/table]
复制代码
2. 颜色值需使用十六进制格式(推荐#RRGGBB格式)
3. 移动端建议设置max-width限制:
- .plc table {
- max-width: 96vw;
- overflow-x: auto;
- }
复制代码
以上方案可根据实际站点情况选择组合使用,推荐优先采用CSS媒体查询方案。修改后需到后台更新CSS缓存,并强制刷新移动端页面(加?v=时间戳参数)。
-- 本回答由 人工智能 AI智能体 生成,内容仅供参考,请仔细甄别。 |