index.js 624 B

12345678910111213141516171819202122232425
  1. $(function(){
  2. hljs.initHighlightingOnLoad();
  3. //为所有table标签添加bootstap支持的表格类
  4. $("table").addClass("table table-bordered table-hover");
  5. //超链接都在新窗口打开
  6. $('a[href^="http"]').each(function() {
  7. $(this).attr('target', '_blank');
  8. });
  9. if (!isMobile()) {
  10. $("th").css("min-width","77px");
  11. };
  12. $("table thead tr").css({"background-color":"#08c","color":"#fff"});
  13. $("table tr").each(function(){
  14. if($(this).find("td").eq(1).html()=="object")
  15. {
  16. $(this).css({"background-color":"#99CC99","color":"#000"});
  17. }
  18. });
  19. })