标签:手机 easyui idt date pre span 屏幕宽度 ide lse
PC浏览器的Datagrid可以显示多几列,但是在手机浏览器时,只能有选择性的显示前几列.
$(window).resize(function () { if (document.body.clientWidth <= 414) { $(‘#grid‘).datagrid(‘hideColumn‘, ‘id‘); $(‘#grid‘).datagrid(‘hideColumn‘, ‘prodCode‘); $(‘#grid‘).datagrid(‘hideColumn‘, ‘referee‘); $(‘#grid‘).datagrid(‘hideColumn‘, ‘createDate‘); } else { $(‘#grid‘).datagrid(‘showColumn‘, ‘id‘); $(‘#grid‘).datagrid(‘showColumn‘, ‘prodCode‘); $(‘#grid‘).datagrid(‘showColumn‘, ‘referee‘); $(‘#grid‘).datagrid(‘showColumn‘, ‘createDate‘); } });
标签:手机 easyui idt date pre span 屏幕宽度 ide lse
原文地址:https://www.cnblogs.com/zitjubiz/p/9522970.html