Split large table into several smaller tables

前端 未结 3 644
感动是毒
感动是毒 2020-12-20 23:40

I have a problem where a table has 100s of rows. It causes an issue and needs to be split into several smaller tables with fewer rows each.

My html is valid xml as

3条回答
  •  挽巷
    挽巷 (楼主)
    2020-12-21 00:05

    This XSLT 1.0 stylesheet:

    
        
        
            
                
            
        
        
            
                
            
        
        
            
            

    Output:

    
        
    head 1 head 2
    col1 col2
    col1 col2
    head 1 head 2
    col1 col2
    col1 col2
    head 1 head 2
    col1 col2
    col1 col2

    Edit: Compact code.

提交回复
热议问题