本文實例講述了JavaScript控制table某列不顯示的方法。分享給大家供大家參考。具體實作方法如下:
1、table程式碼
2、js依權限控制
註:如果數據是動態數據,當賦值完後再控制顯示td,否則會造成td頭控製成功,其他行失敗的情況
if (uname === "guest") { $("#mytable tr").each(function() { $(this).find("td").eq(7).css("display", "none"); $(this).find("td").eq(8).css("display", "none"); $(this).find("td").eq(9).css("display", "none"); $(this).find("td").eq(10).css("display", "none"); $(this).find("td").eq(11).css("display", "none"); $(this).find("td").eq(12).css("display", "none"); $(this).find("td").eq(13).css("display", "none"); }); }
希望本文所述對大家的javascript程式設計有所幫助。